diff --git a/.env b/.env index 518ce83b..d60b3383 100644 --- a/.env +++ b/.env @@ -1,6 +1,9 @@ +# This top-level .env file under AirStack/ defines variables that are propagated through docker-compose.yaml PROJECT_NAME="airstack" -PROJECT_VERSION="1.0.5" +PROJECT_VERSION="1.1.0" # can replace with your docker hub username PROJECT_DOCKER_REGISTRY="airlab-storage.andrew.cmu.edu:5001/shared" DEFAULT_ISAAC_SCENE="omniverse://airlab-storage.andrew.cmu.edu:8443/Projects/AirStack/fire_academy.scene.usd" PLAY_SIM_ON_START="true" +# the file under robot/docker/ that contains the robot's environment variables +ROBOT_ENV_FILE_NAME="robot.env" \ No newline at end of file diff --git a/.github/workflows/deploy_docs.yaml b/.github/workflows/deploy_docs.yaml deleted file mode 100644 index 3a5cc8ce..00000000 --- a/.github/workflows/deploy_docs.yaml +++ /dev/null @@ -1,36 +0,0 @@ -name: Deploy Docs -on: - push: - paths: - - "docs/**" - - "mkdocs.yml" - - "*.md" - - ".github/workflows/deploy_docs.yaml" - branches: - - master - - main -permissions: - contents: write -jobs: - deploy: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - with: - submodules: recursive - - name: Configure Git Credentials - run: | - git config user.name github-actions[bot] - git config user.email 41898282+github-actions[bot]@users.noreply.github.com - - uses: actions/setup-python@v5 - with: - python-version: 3.x - - run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV - - uses: actions/cache@v4 - with: - key: mkdocs-material-${{ env.cache_id }} - path: .cache - restore-keys: | - mkdocs-material- - - run: pip install mkdocs-material mkdocs-same-dir mkdocs-redirects - - run: mkdocs gh-deploy --force diff --git a/.github/workflows/deploy_docs_from_develop.yaml b/.github/workflows/deploy_docs_from_develop.yaml new file mode 100644 index 00000000..7a10cb9a --- /dev/null +++ b/.github/workflows/deploy_docs_from_develop.yaml @@ -0,0 +1,32 @@ +name: Build/Publish Develop Docs +on: + push: + paths: + - "docs/**" + - "mkdocs.yml" + - "*.md" + - ".github/workflows/deploy_docs_from_develop.yaml" + branches: + - develop +permissions: + contents: write +jobs: + deploy: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + with: + fetch-depth: 0 + - uses: actions/setup-python@v4 + with: + python-version: 3.10.6 + - name: Install Dependencies + run: | + pip install mkdocs-material mkdocs-same-dir mkdocs-redirects + pip install pillow cairosvg mike + - name: Setup Docs Deploy + run: | + git config --global user.name "Docs Deploy" + git config --global user.email "docs.deploy@example.co.uk" + - name: Build Docs Website + run: mike deploy --push develop diff --git a/.github/workflows/deploy_docs_from_main.yaml b/.github/workflows/deploy_docs_from_main.yaml new file mode 100644 index 00000000..d60fa38d --- /dev/null +++ b/.github/workflows/deploy_docs_from_main.yaml @@ -0,0 +1,32 @@ +name: Build/Publish Main Docs +on: + push: + paths: + - "docs/**" + - "mkdocs.yml" + - "*.md" + - ".github/workflows/deploy_docs_from_main.yaml" + branches: + - main +permissions: + contents: write +jobs: + deploy: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + with: + fetch-depth: 0 + - uses: actions/setup-python@v4 + with: + python-version: 3.10.6 + - name: Install Dependencies + run: | + pip install mkdocs-material mkdocs-same-dir mkdocs-redirects + pip install pillow cairosvg mike + - name: Setup Docs Deploy + run: | + git config --global user.name "Docs Deploy" + git config --global user.email "docs.deploy@example.co.uk" + - name: Build Docs Website + run: mike deploy --push main diff --git a/.github/workflows/deploy_docs_from_release.yaml b/.github/workflows/deploy_docs_from_release.yaml new file mode 100644 index 00000000..c5e71754 --- /dev/null +++ b/.github/workflows/deploy_docs_from_release.yaml @@ -0,0 +1,28 @@ +name: Build/Publish Latest Release Docs + +on: + release: + types: [published] + +permissions: + contents: write +jobs: + deploy: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + with: + fetch-depth: 0 + - uses: actions/setup-python@v4 + with: + python-version: 3.10.6 + - name: Install Dependencies + run: | + pip install mkdocs-material + pip install pillow cairosvg mike + - name: Setup Docs Deploy + run: | + git config --global user.name "Docs Deploy" + git config --global user.email "docs.deploy@example.co.uk" + - name: Build Docs Website + run: mike deploy --push --update-aliases ${{ github.event.release.tag_name }} latest diff --git a/.gitmodules b/.gitmodules index f51a3e64..f0f65c11 100644 --- a/.gitmodules +++ b/.gitmodules @@ -7,3 +7,6 @@ [submodule "ground_control_station/ros_ws/src/ros-gst-bridge"] path = ground_control_station/ros_ws/src/ros-gst-bridge url = https://github.com/BrettRD/ros-gst-bridge.git +[submodule "robot/ros_ws/src/autonomy/2_perception/macvo/macvo/src"] + path = robot/ros_ws/src/autonomy/2_perception/macvo/macvo/src + url = https://github.com/MAC-VO/MAC-VO.git diff --git a/docs/README.md b/docs/README.md index 851e0c3a..c99f4de6 100644 --- a/docs/README.md +++ b/docs/README.md @@ -1,15 +1,7 @@ -# AirStack Boilerplate - -Welcome to the AirStack Boilerplate! This repository template serves to kickstart the development of your own robotics autonomy stack. You're encouraged to customize your version in any way to best suit your project's needs. - -This boilerplate is maintained by the [AirLab](https://theairlab.org) at Carnegie Mellon University's Robotics Institute. - -Please head to our [Getting Started](getting_started.md) page to start. - - - - -![Overview](overview.png) -*AirStack* - - +--- +template: home.html +title: Home +hide: + - navigation + - toc +--- diff --git a/docs/assets/media/splash-background.gif b/docs/assets/media/splash-background.gif new file mode 100644 index 00000000..a0b22dc8 Binary files /dev/null and b/docs/assets/media/splash-background.gif differ diff --git a/docs/development/project_configuration.md b/docs/development/project_configuration.md index 0309a868..d274c0ad 100644 --- a/docs/development/project_configuration.md +++ b/docs/development/project_configuration.md @@ -1,4 +1,12 @@ # Project Configuration The project as a whole can be configured using the `.env` file under the project root. -The variables in the `.env` file gets populated into the root `docker-compose.yml`. \ No newline at end of file +The variables in the `.env` file get propagated into the `docker-compose.yml` files. + + +The top-level env file is reproduced below: +```bash +--8<-- ".env" +``` + + diff --git a/docs/ground_control_station/asset/WinTAK_on_windows_virtualbox_vm.png b/docs/ground_control_station/asset/WinTAK_on_windows_virtualbox_vm.png new file mode 100644 index 00000000..c7b9d921 Binary files /dev/null and b/docs/ground_control_station/asset/WinTAK_on_windows_virtualbox_vm.png differ diff --git a/docs/ground_control_station/asset/setup.png b/docs/ground_control_station/asset/setup.png new file mode 100644 index 00000000..a45ada4d Binary files /dev/null and b/docs/ground_control_station/asset/setup.png differ diff --git a/docs/ground_control_station/index.md b/docs/ground_control_station/index.md index ca3491c3..eb984863 100644 --- a/docs/ground_control_station/index.md +++ b/docs/ground_control_station/index.md @@ -1,3 +1,39 @@ # Ground Control Station -The Ground Control Station (GCS) is for operators to monitor and control the robots. \ No newline at end of file +The Ground Control Station (GCS) is for operators to monitor and control the robots. + +Requirements: +- 60GB Hard Disk Space +- min 8GB RAM +- min 4 CPU Cores +- Ubuntu 22.04 + +## Setup +WinTAK is setup as auto start on boot and connects to Airlabs TAK-Server. Its run on Windows 11 VirtualBox Virtual Machine. + +![Setup](asset/setup.png) + +1. Set your `ANDREWID` as an environment variable. +```bash +export ANDREWID= +``` +2. Run the following commands to setup WinTAK running over Windows VirtualBox. +```bash +sudo mkdir -p "$HOME/vmware" +sudo chown -R $USER:$USER "$HOME/vmware" +sudo chmod -R 755 "$HOME/vmware" +sudo rsync --progress -avz ${ANDREWID}@airlab-storage.andrew.cmu.edu:/volume4/dsta/atak/setup/ "$HOME/vmware" +sudo dpkg -i "$HOME/vmware/virtualbox-7.1_7.1.6-167084~Ubuntu~jammy_amd64.deb" +sudo apt-get install -f +sudo /sbin/vboxconfig +VBoxManage import "$HOME/vmware/Windows11.ova" --vsys 0 --vmname "WinTAK" + +``` +3. Run WinTAK using the following commands. +```bash +VBoxManage startvm "WinTAK" +``` + +NOTE: If it asks to reset the password, please reset to current password. + +![WinTAK](asset/WinTAK_on_windows_virtualbox_vm.png) \ No newline at end of file diff --git a/docs/overrides/home.html b/docs/overrides/home.html new file mode 100644 index 00000000..c6172f36 --- /dev/null +++ b/docs/overrides/home.html @@ -0,0 +1,100 @@ +{% extends "main.html" %} + +{% block tabs %} + {{ super() }} + + +
+ +
+
+
+ Background Animation +
+
+ + +
+
+
+

Welcome to AirStack

+

A comprehensive robotics autonomy stack boilerplate for accelerating your robotics development

+ + Get Started + + + View on GitHub + +
+
+
+
+{% endblock %} + +{% block content %} +
+
+ +
+
+
+

What is AirStack?

+

+ AirStack is a powerful robotics development boilerplate maintained by the + AirLab at Carnegie Mellon University's + Robotics Institute. It provides a structured foundation for building advanced robotics + applications with: +

+
    +
  • 🤖 Complete Autonomy Stack - From sensors to behavior planning
  • +
  • 🔧 Modular Architecture - Easy to customize and extend
  • +
  • 🚀 Development Tools - Docker support, VSCode integration, and testing frameworks
  • +
  • 📊 Ground Control Station - Built-in monitoring and control interface
  • +
  • 🎮 Simulation Ready - Integrated with Isaac Sim
  • +
  • 🔄 CI/CD Pipeline - Automated testing and deployment
  • +
+
+
+
+ + +
+
+

Key Features

+
+
+
🎯
+

Autonomy Modules

+

Complete suite of autonomy components including perception, planning, and control systems.

+
+
+
🌐
+

Ground Control

+

Built-in ground control station for robot monitoring and control, with multi-robot support.

+
+
+
🎲
+

Simulation

+

Integrated simulation environment with Isaac Sim for testing and development.

+
+
+
🛠️
+

Development Tools

+

Comprehensive development environment with Docker, VSCode, and testing frameworks.

+
+
+
+
+ + +
+
+
+ AirStack Architecture Overview +

AirStack Architecture Overview

+
+
+
+
+
+{% endblock %} diff --git a/docs/robot/autonomy/3_local/planning/index.md b/docs/robot/autonomy/3_local/planning/index.md index 8f2f4c6c..a5978980 100644 --- a/docs/robot/autonomy/3_local/planning/index.md +++ b/docs/robot/autonomy/3_local/planning/index.md @@ -4,4 +4,4 @@ Part of the local planner is the Waypoint Manager. The Waypoint Manager subscribes to the global waypoints and the drone's current position and publishes the next waypoint to the local planner. -We plan for this baseline to be DROAN \ No newline at end of file +We plan for this baseline to be DROAN. \ No newline at end of file diff --git a/docs/robot/common_topics.md b/docs/robot/common_topics.md deleted file mode 100644 index c18d5b8c..00000000 --- a/docs/robot/common_topics.md +++ /dev/null @@ -1,11 +0,0 @@ - - - - -| Topic | Type | Description | -| -------------------------------| ------------------| ---------------------------------------------------------------------------------------------------------------------------| -| `/$ROBOT_NAME/odometry` | [nav_msgs/Odometry](https://docs.ros.org/en/rolling/p/nav_msgs/interfaces/msg/Odometry.html) | Best estimate of robot odometry -| `/$ROBOT_NAME/global_plan` | [nav_msgs/Path](https://docs.ros.org/en/rolling/p/nav_msgs/interfaces/msg/Path.html) | Current target global trajectory for the robot to follow. See [global planning](4_global/planning.md) for more details. - -## System Diagram -![AirStack System Diagram](airstack_system_diagram.png) \ No newline at end of file diff --git a/docs/robot/configuration/index.md b/docs/robot/configuration/index.md new file mode 100644 index 00000000..94c18d7e --- /dev/null +++ b/docs/robot/configuration/index.md @@ -0,0 +1,2 @@ +# Configuration + diff --git a/docs/robot/index.md b/docs/robot/index.md index e0417343..bc7d1744 100644 --- a/docs/robot/index.md +++ b/docs/robot/index.md @@ -1,4 +1,48 @@ # Robot +## Directory Structure +Underneath `AirStack/robot`, there are these directories: +- `docker/`: Contains files related to building and launching the robot Docker container. +- `installation/`: Contains files related to installing the robot software on a physical robot (TODO). +- `ros_ws/`: Contains the ROS 2 workspace for the robot. + ## Launch Structure -Each high-level module has a `*_bringup` package that contains the launch files for that module. The launch files are located in the `launch` directory of the `*_bringup` package. The launch files are named `*.launch.(xml/yaml/py)` and can be launched with `ros2 launch _bringup .launch.(xml/yaml/py)`. +Each high-level module under `ros_ws/` has a `[module]_bringup` package that contains the launch files for that module. The launch files are located in the `launch` directory of the `[module]_bringup` package. The launch files are named `*.launch.(xml/yaml/py)` and can be launched with `ros2 launch _bringup .launch.(xml/yaml/py)`. + +At a high level, the launch files are organized as follows: + + +``` +- robot_bringup/: robot.launch.xml + - autonomy_bringup/: autonomy.launch.xml + - interface_bringup/: interface.launch.xml + - sensors_bringup/: sensors.launch.xml + - perception_bringup/: perception.launch.xml + - local_bringup/: local.launch.xml + - global_bringup/: global.launch.xml + - behavior_bringup/: behavior.launch.xml +``` + +## Configuration + +### Desktop vs Jetson +If you look at the `robot/docker/docker-compose.yaml` file, you'll see it contains two services. `robot` is meant for x86-64 desktop development whereas `robot_l4t` is meant to run on NVIDIA Jetson devices. Both extend a base service in `robot/docker/robot-base-docker-compose.yaml`. + +### Environment Variables +Environment variables are used to configure the robot Docker container. The top level `AirStack/.env` file points to a `ROBOT_ENV_FILE_NAME` (default: `robot.env`), that in turn is used to load environment variables for the robot Docker container. The file that `ROBOT_ENV_FILE_NAME` points to gets added into the container under `robot/docker/robot-base-docker-compose.yaml`. + +The environment variables can be used to trigger nodes to launch. For example, the `USE_MACVO` environmental variable is checked by `perception.launch.xml` to determine whether to launch the `macvo` node. + +The file `robot.env` is reproduced below: +```bash +--8<-- "robot/docker/robot.env" +``` + +## Common Topics +| Topic | Type | Description | +| -------------------------------| ------------------| ---------------------------------------------------------------------------------------------------------------------------| +| `/$ROBOT_NAME/odometry` | [nav_msgs/Odometry](https://docs.ros.org/en/rolling/p/nav_msgs/interfaces/msg/Odometry.html) | Best estimate of robot odometry +| `/$ROBOT_NAME/global_plan` | [nav_msgs/Path](https://docs.ros.org/en/rolling/p/nav_msgs/interfaces/msg/Path.html) | Current target global trajectory for the robot to follow. See [global planning](4_global/planning.md) for more details. + +### Rough System Diagram +![AirStack System Diagram](airstack_system_diagram.png) \ No newline at end of file diff --git a/docs/stylesheets/extra.css b/docs/stylesheets/extra.css index c87744e8..88247eac 100644 --- a/docs/stylesheets/extra.css +++ b/docs/stylesheets/extra.css @@ -2,8 +2,237 @@ --md-primary-fg-color: #EE0F0F; --md-primary-fg-color--light: #ECB7B7; --md-primary-fg-color--dark: #90030C; - } +} - [data-md-color-scheme="slate"] { +[data-md-color-scheme="slate"] { --md-hue: 210; - } +} + +/* Ensure navigation tabs are above splash content */ +.md-tabs { + position: relative; + z-index: 10; +} + +/* Splash container and background */ +.splash-container { + position: relative; + width: 100%; + height: calc(100vh - 98px); /* Subtract header height to prevent overlap */ + min-height: 600px; + overflow: hidden; + margin-top: 0; /* Remove negative margin */ + padding-top: 1rem; /* Add some padding from the navigation */ +} + +.splash-background { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + z-index: 1; +} + +.media-overlay { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + background: rgba(0, 0, 0, 0.5); /* Darkens the background media */ + z-index: 2; +} + +.media-container { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + z-index: 1; +} + +.splash-media { + width: 100%; + height: 100%; + object-fit: cover; +} + +/* Hero section */ +.mdx-container { + padding: 1rem; + margin: 0 auto; +} + +.mdx-hero { + position: relative; + z-index: 3; + margin: 0; + height: 100%; + display: flex; + align-items: center; + justify-content: center; + text-align: center; + color: white; + padding-top: 7rem; /* Add padding to push content down */ +} + +.mdx-hero h1 { + font-size: 3.5rem; + font-weight: 700; + margin-bottom: 1rem; + line-height: 1.15; + color: #ffffff; + text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); +} + +.mdx-hero p { + font-size: 1.4rem; + font-weight: 300; + margin-bottom: 2rem; + color: #ffffff; + text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5); + max-width: 35rem; + margin-left: auto; + margin-right: auto; +} + +.mdx-hero .md-button { + margin: 0.5rem; + font-size: 1rem; + padding: 0.625em 2em; +} + +.mdx-hero .md-button--primary { + background-color: var(--md-primary-fg-color); + border-color: var(--md-primary-fg-color); + color: var(--md-primary-bg-color); +} + +/* What is section */ +.what-is-section { + margin: 4rem 0; +} + +.what-is-section h2 { + font-size: 2.5rem; + font-weight: 600; + margin-bottom: 1.5rem; + color: var(--md-default-fg-color); +} + +.what-is-section p { + font-size: 1.1rem; + line-height: 1.6; + margin-bottom: 1.5rem; +} + +.feature-list { + list-style: none; + padding: 0; + margin: 2rem 0; +} + +.feature-list li { + font-size: 1.1rem; + margin-bottom: 1rem; + padding-left: 1.5rem; + position: relative; +} + +.feature-list li strong { + color: var(--md-primary-fg-color); +} + +/* Feature grid */ +.feature-grid { + display: grid; + grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Increased minimum width */ + gap: 2rem; + margin: 2rem 0 4rem; +} + +.feature-card { + background-color: var(--md-default-bg-color); + border: 1px solid var(--md-default-fg-color--lightest); + border-radius: 8px; + padding: 2rem; + transition: all 0.3s ease; + text-align: center; +} + +.feature-card:hover { + transform: translateY(-5px); + box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); +} + +.feature-icon { + font-size: 2.5rem; + margin-bottom: 1rem; +} + +.feature-card h3 { + font-size: 1.5rem; + font-weight: 600; + margin: 1rem 0; + color: var(--md-primary-fg-color); + white-space: nowrap; /* Prevent text wrapping */ +} + +.feature-card p { + font-size: 1rem; + line-height: 1.5; + color: var(--md-default-fg-color--light); +} + +/* Architecture section */ +.architecture-section { + margin: 4rem 0; + text-align: center; +} + +.architecture-image { + max-width: 100%; + height: auto; + border-radius: 8px; + margin-bottom: 1rem; +} + +.image-caption { + font-size: 1rem; + color: var(--md-default-fg-color--light); +} + +/* Responsive adjustments */ +@media screen and (max-width: 76.1875em) { + .mdx-hero h1 { + font-size: 2.5rem; + } + + .mdx-hero p { + font-size: 1.2rem; + } + + .what-is-section h2 { + font-size: 2rem; + } + + .feature-grid { + grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); + } +} + +@media screen and (max-width: 600px) { + .mdx-hero h1 { + font-size: 2rem; + } + + .mdx-hero p { + font-size: 1.1rem; + } + + .what-is-section h2 { + font-size: 1.75rem; + } +} diff --git a/mkdocs.log b/mkdocs.log new file mode 100644 index 00000000..a2fedd92 --- /dev/null +++ b/mkdocs.log @@ -0,0 +1,100451 @@ +INFO - Building documentation... +INFO - Cleaning site directory +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Documentation built in 0.62 seconds +INFO - [00:20:17] Watching paths for changes: '.', 'mkdocs.yml' +INFO - [00:20:17] Serving on http://0.0.0.0:54933/ +INFO - [00:20:18] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Documentation built in 0.63 seconds +INFO - [00:20:18] Reloading browsers +INFO - [00:20:18] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Documentation built in 0.67 seconds +INFO - [00:20:19] Reloading browsers +INFO - [00:20:19] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Documentation built in 0.65 seconds +INFO - [00:20:20] Reloading browsers +INFO - [00:20:20] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:20:21] Reloading browsers +INFO - [00:20:21] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Documentation built in 0.64 seconds +INFO - [00:20:22] Reloading browsers +INFO - [00:20:22] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:20:22] Reloading browsers +INFO - [00:20:22] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:20:23] Reloading browsers +INFO - [00:20:23] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:20:24] Reloading browsers +INFO - [00:20:24] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:20:25] Reloading browsers +INFO - [00:20:25] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:20:25] Reloading browsers +INFO - [00:20:25] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Documentation built in 0.66 seconds +INFO - [00:20:26] Reloading browsers +INFO - [00:20:26] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:20:27] Reloading browsers +INFO - [00:20:27] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Documentation built in 0.68 seconds +INFO - [00:20:28] Reloading browsers +INFO - [00:20:28] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:20:29] Reloading browsers +INFO - [00:20:29] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:20:29] Reloading browsers +INFO - [00:20:29] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:20:30] Reloading browsers +INFO - [00:20:30] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:20:31] Reloading browsers +INFO - [00:20:31] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:20:32] Reloading browsers +INFO - [00:20:32] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:20:32] Reloading browsers +INFO - [00:20:32] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:20:33] Reloading browsers +INFO - [00:20:33] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:20:34] Reloading browsers +INFO - [00:20:34] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:20:35] Reloading browsers +INFO - [00:20:35] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:20:36] Reloading browsers +INFO - [00:20:36] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Documentation built in 0.69 seconds +INFO - [00:20:36] Reloading browsers +INFO - [00:20:36] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:20:37] Reloading browsers +INFO - [00:20:37] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:20:38] Reloading browsers +INFO - [00:20:38] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Documentation built in 0.71 seconds +INFO - [00:20:39] Reloading browsers +INFO - [00:20:39] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:20:40] Reloading browsers +INFO - [00:20:40] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:20:40] Reloading browsers +INFO - [00:20:40] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Documentation built in 0.74 seconds +INFO - [00:20:41] Reloading browsers +INFO - [00:20:41] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Documentation built in 0.84 seconds +INFO - [00:20:42] Reloading browsers +INFO - [00:20:42] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:20:43] Reloading browsers +INFO - [00:20:43] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Documentation built in 0.72 seconds +INFO - [00:20:44] Reloading browsers +INFO - [00:20:44] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:20:45] Reloading browsers +INFO - [00:20:45] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:20:46] Reloading browsers +INFO - [00:20:46] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Documentation built in 0.79 seconds +INFO - [00:20:46] Reloading browsers +INFO - [00:20:46] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:20:47] Reloading browsers +INFO - [00:20:47] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Documentation built in 0.78 seconds +INFO - [00:20:48] Reloading browsers +INFO - [00:20:48] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:20:49] Reloading browsers +INFO - [00:20:49] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:20:50] Reloading browsers +INFO - [00:20:50] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Documentation built in 0.75 seconds +INFO - [00:20:51] Reloading browsers +INFO - [00:20:51] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:20:52] Reloading browsers +INFO - [00:20:52] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Documentation built in 0.77 seconds +INFO - [00:20:53] Reloading browsers +INFO - [00:20:53] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:20:53] Reloading browsers +INFO - [00:20:53] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:20:54] Reloading browsers +INFO - [00:20:54] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:20:55] Reloading browsers +INFO - [00:20:55] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:20:56] Reloading browsers +INFO - [00:20:56] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:20:57] Reloading browsers +INFO - [00:20:57] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:20:58] Reloading browsers +INFO - [00:20:58] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:20:59] Reloading browsers +INFO - [00:20:59] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Documentation built in 0.70 seconds +INFO - [00:20:59] Reloading browsers +INFO - [00:20:59] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:00] Reloading browsers +INFO - [00:21:00] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:01] Reloading browsers +INFO - [00:21:01] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:02] Reloading browsers +INFO - [00:21:02] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:03] Reloading browsers +INFO - [00:21:03] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:04] Reloading browsers +INFO - [00:21:04] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:05] Reloading browsers +INFO - [00:21:05] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:05] Reloading browsers +INFO - [00:21:05] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:06] Reloading browsers +INFO - [00:21:06] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:07] Reloading browsers +INFO - [00:21:07] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:08] Reloading browsers +INFO - [00:21:08] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:09] Reloading browsers +INFO - [00:21:09] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:09] Reloading browsers +INFO - [00:21:09] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:10] Reloading browsers +INFO - [00:21:10] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:11] Reloading browsers +INFO - [00:21:11] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:12] Reloading browsers +INFO - [00:21:12] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:13] Reloading browsers +INFO - [00:21:13] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:13] Reloading browsers +INFO - [00:21:13] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:14] Reloading browsers +INFO - [00:21:14] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:15] Reloading browsers +INFO - [00:21:15] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:16] Reloading browsers +INFO - [00:21:16] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:17] Reloading browsers +INFO - [00:21:17] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:17] Reloading browsers +INFO - [00:21:17] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Documentation built in 0.73 seconds +INFO - [00:21:18] Reloading browsers +INFO - [00:21:18] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:19] Reloading browsers +INFO - [00:21:19] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:20] Reloading browsers +INFO - [00:21:20] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:21] Reloading browsers +INFO - [00:21:21] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:21] Reloading browsers +INFO - [00:21:21] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:22] Reloading browsers +INFO - [00:21:22] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:23] Reloading browsers +INFO - [00:21:23] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:24] Reloading browsers +INFO - [00:21:24] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:25] Reloading browsers +INFO - [00:21:25] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Documentation built in 0.76 seconds +INFO - [00:21:26] Reloading browsers +INFO - [00:21:26] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:27] Reloading browsers +INFO - [00:21:27] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:28] Reloading browsers +INFO - [00:21:28] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:28] Reloading browsers +INFO - [00:21:28] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:29] Reloading browsers +INFO - [00:21:29] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:30] Reloading browsers +INFO - [00:21:30] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:31] Reloading browsers +INFO - [00:21:31] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:32] Reloading browsers +INFO - [00:21:32] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:32] Reloading browsers +INFO - [00:21:32] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:33] Reloading browsers +INFO - [00:21:33] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:34] Reloading browsers +INFO - [00:21:34] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:35] Reloading browsers +INFO - [00:21:35] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:35] Reloading browsers +INFO - [00:21:35] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:36] Reloading browsers +INFO - [00:21:36] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:37] Reloading browsers +INFO - [00:21:37] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:38] Reloading browsers +INFO - [00:21:38] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:39] Reloading browsers +INFO - [00:21:39] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:39] Reloading browsers +INFO - [00:21:39] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:40] Reloading browsers +INFO - [00:21:40] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:41] Reloading browsers +INFO - [00:21:41] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:42] Reloading browsers +INFO - [00:21:42] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:43] Reloading browsers +INFO - [00:21:43] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:43] Reloading browsers +INFO - [00:21:43] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:44] Reloading browsers +INFO - [00:21:44] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:45] Reloading browsers +INFO - [00:21:45] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:46] Reloading browsers +INFO - [00:21:46] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:46] Reloading browsers +INFO - [00:21:46] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:47] Reloading browsers +INFO - [00:21:47] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:48] Reloading browsers +INFO - [00:21:48] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:49] Reloading browsers +INFO - [00:21:49] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:50] Reloading browsers +INFO - [00:21:50] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:50] Reloading browsers +INFO - [00:21:50] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:51] Reloading browsers +INFO - [00:21:51] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:52] Reloading browsers +INFO - [00:21:52] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:53] Reloading browsers +INFO - [00:21:53] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:54] Reloading browsers +INFO - [00:21:54] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:54] Reloading browsers +INFO - [00:21:54] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:55] Reloading browsers +INFO - [00:21:55] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:56] Reloading browsers +INFO - [00:21:56] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:57] Reloading browsers +INFO - [00:21:57] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:58] Reloading browsers +INFO - [00:21:58] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:58] Reloading browsers +INFO - [00:21:58] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:59] Reloading browsers +INFO - [00:21:59] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:00] Reloading browsers +INFO - [00:22:00] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:01] Reloading browsers +INFO - [00:22:01] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:01] Reloading browsers +INFO - [00:22:01] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:02] Reloading browsers +INFO - [00:22:02] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:03] Reloading browsers +INFO - [00:22:03] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:04] Reloading browsers +INFO - [00:22:04] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:05] Reloading browsers +INFO - [00:22:05] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:05] Reloading browsers +INFO - [00:22:05] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:06] Reloading browsers +INFO - [00:22:06] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:07] Reloading browsers +INFO - [00:22:07] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:08] Reloading browsers +INFO - [00:22:08] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:09] Reloading browsers +INFO - [00:22:09] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:09] Reloading browsers +INFO - [00:22:09] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:10] Reloading browsers +INFO - [00:22:10] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:11] Reloading browsers +INFO - [00:22:11] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:12] Reloading browsers +INFO - [00:22:12] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:12] Reloading browsers +INFO - [00:22:12] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:13] Reloading browsers +INFO - [00:22:13] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:14] Reloading browsers +INFO - [00:22:14] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:15] Reloading browsers +INFO - [00:22:15] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:16] Reloading browsers +INFO - [00:22:16] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:16] Reloading browsers +INFO - [00:22:16] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:17] Reloading browsers +INFO - [00:22:17] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:18] Reloading browsers +INFO - [00:22:18] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:19] Reloading browsers +INFO - [00:22:19] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:20] Reloading browsers +INFO - [00:22:20] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:20] Reloading browsers +INFO - [00:22:20] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:21] Reloading browsers +INFO - [00:22:21] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:22] Reloading browsers +INFO - [00:22:22] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:23] Reloading browsers +INFO - [00:22:23] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:24] Reloading browsers +INFO - [00:22:24] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:24] Reloading browsers +INFO - [00:22:24] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:25] Reloading browsers +INFO - [00:22:25] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:26] Reloading browsers +INFO - [00:22:26] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:27] Reloading browsers +INFO - [00:22:27] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:27] Reloading browsers +INFO - [00:22:27] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:28] Reloading browsers +INFO - [00:22:28] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:29] Reloading browsers +INFO - [00:22:29] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:30] Reloading browsers +INFO - [00:22:30] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:31] Reloading browsers +INFO - [00:22:31] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:31] Reloading browsers +INFO - [00:22:31] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:32] Reloading browsers +INFO - [00:22:32] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:33] Reloading browsers +INFO - [00:22:33] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:34] Reloading browsers +INFO - [00:22:34] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:35] Reloading browsers +INFO - [00:22:35] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:35] Reloading browsers +INFO - [00:22:35] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:36] Reloading browsers +INFO - [00:22:36] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:37] Reloading browsers +INFO - [00:22:37] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:38] Reloading browsers +INFO - [00:22:38] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:39] Reloading browsers +INFO - [00:22:39] Detected file changes +INFO - Building documentation... +INFO - [00:22:39] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:39] Reloading browsers +INFO - [00:22:39] Detected file changes +INFO - Building documentation... +INFO - [00:22:39] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:40] Reloading browsers +INFO - [00:22:40] Detected file changes +INFO - [00:22:40] Browser connected: http://localhost:54933/docs/ +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:41] Reloading browsers +INFO - [00:22:41] Detected file changes +INFO - [00:22:41] Browser connected: http://localhost:54933/docs/ +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:42] Reloading browsers +INFO - [00:22:42] Detected file changes +INFO - Building documentation... +INFO - [00:22:42] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:43] Reloading browsers +INFO - [00:22:43] Detected file changes +INFO - [00:22:43] Browser connected: http://localhost:54933/docs/ +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:44] Reloading browsers +INFO - [00:22:44] Detected file changes +INFO - [00:22:44] Browser connected: http://localhost:54933/docs/ +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:44] Reloading browsers +INFO - [00:22:44] Detected file changes +INFO - [00:22:45] Browser connected: http://localhost:54933/docs/ +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:45] Reloading browsers +INFO - [00:22:45] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:22:46] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:46] Reloading browsers +INFO - [00:22:46] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:47] Reloading browsers +INFO - [00:22:47] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:48] Reloading browsers +INFO - [00:22:48] Detected file changes +INFO - [00:22:48] Browser connected: http://localhost:54933/docs/ +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:49] Reloading browsers +INFO - [00:22:49] Detected file changes +INFO - Building documentation... +INFO - [00:22:49] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:49] Reloading browsers +INFO - [00:22:49] Detected file changes +INFO - [00:22:50] Browser connected: http://localhost:54933/docs/ +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:50] Reloading browsers +INFO - [00:22:50] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:51] Reloading browsers +INFO - [00:22:51] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:52] Reloading browsers +INFO - [00:22:52] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:53] Reloading browsers +INFO - [00:22:53] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:53] Reloading browsers +INFO - [00:22:53] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:54] Reloading browsers +INFO - [00:22:54] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:55] Reloading browsers +INFO - [00:22:55] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:56] Reloading browsers +INFO - [00:22:56] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:57] Reloading browsers +INFO - [00:22:57] Detected file changes +INFO - Building documentation... +INFO - [00:22:57] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:57] Reloading browsers +INFO - [00:22:57] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:58] Reloading browsers +INFO - [00:22:58] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:59] Reloading browsers +INFO - [00:22:59] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:00] Reloading browsers +INFO - [00:23:00] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:01] Reloading browsers +INFO - [00:23:01] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:02] Reloading browsers +INFO - [00:23:02] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:02] Reloading browsers +INFO - [00:23:02] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:03] Reloading browsers +INFO - [00:23:03] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:04] Reloading browsers +INFO - [00:23:04] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:05] Reloading browsers +INFO - [00:23:05] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:06] Reloading browsers +INFO - [00:23:06] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:06] Reloading browsers +INFO - [00:23:06] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:07] Reloading browsers +INFO - [00:23:07] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:08] Reloading browsers +INFO - [00:23:08] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:09] Reloading browsers +INFO - [00:23:09] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:10] Reloading browsers +INFO - [00:23:10] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Documentation built in 0.80 seconds +INFO - [00:23:11] Reloading browsers +INFO - [00:23:11] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:12] Reloading browsers +INFO - [00:23:12] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:12] Reloading browsers +INFO - [00:23:12] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:13] Reloading browsers +INFO - [00:23:13] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:14] Reloading browsers +INFO - [00:23:14] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:15] Reloading browsers +INFO - [00:23:15] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:16] Reloading browsers +INFO - [00:23:16] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:17] Reloading browsers +INFO - [00:23:17] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:17] Reloading browsers +INFO - [00:23:17] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:18] Reloading browsers +INFO - [00:23:18] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:19] Reloading browsers +INFO - [00:23:19] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:20] Reloading browsers +INFO - [00:23:20] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:21] Reloading browsers +INFO - [00:23:21] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:22] Reloading browsers +INFO - [00:23:22] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Documentation built in 0.82 seconds +INFO - [00:23:22] Reloading browsers +INFO - [00:23:22] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Documentation built in 0.85 seconds +INFO - [00:23:23] Reloading browsers +INFO - [00:23:23] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:24] Reloading browsers +INFO - [00:23:24] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Documentation built in 0.83 seconds +INFO - [00:23:25] Reloading browsers +INFO - [00:23:25] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:26] Reloading browsers +INFO - [00:23:26] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:27] Reloading browsers +INFO - [00:23:27] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:28] Reloading browsers +INFO - [00:23:28] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:29] Reloading browsers +INFO - [00:23:29] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:30] Reloading browsers +INFO - [00:23:30] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:31] Reloading browsers +INFO - [00:23:31] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:32] Reloading browsers +INFO - [00:23:32] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:32] Reloading browsers +INFO - [00:23:32] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:33] Reloading browsers +INFO - [00:23:33] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Documentation built in 0.97 seconds +INFO - [00:23:34] Reloading browsers +INFO - [00:23:34] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:35] Reloading browsers +INFO - [00:23:35] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Documentation built in 0.90 seconds +INFO - [00:23:37] Reloading browsers +INFO - [00:23:37] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:38] Reloading browsers +INFO - [00:23:38] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:39] Reloading browsers +INFO - [00:23:39] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:40] Reloading browsers +INFO - [00:23:40] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:40] Reloading browsers +INFO - [00:23:40] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:41] Reloading browsers +INFO - [00:23:41] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:42] Reloading browsers +INFO - [00:23:42] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:43] Reloading browsers +INFO - [00:23:43] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:44] Reloading browsers +INFO - [00:23:44] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:45] Reloading browsers +INFO - [00:23:45] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:46] Reloading browsers +INFO - [00:23:46] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:46] Reloading browsers +INFO - [00:23:46] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:47] Reloading browsers +INFO - [00:23:47] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:48] Reloading browsers +INFO - [00:23:48] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:49] Reloading browsers +INFO - [00:23:49] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:50] Reloading browsers +INFO - [00:23:50] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:51] Reloading browsers +INFO - [00:23:51] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:52] Reloading browsers +INFO - [00:23:52] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:53] Reloading browsers +INFO - [00:23:53] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:54] Reloading browsers +INFO - [00:23:54] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:54] Reloading browsers +INFO - [00:23:54] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:55] Reloading browsers +INFO - [00:23:55] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:56] Reloading browsers +INFO - [00:23:56] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:57] Reloading browsers +INFO - [00:23:57] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:58] Reloading browsers +INFO - [00:23:58] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:59] Reloading browsers +INFO - [00:23:59] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:59] Reloading browsers +INFO - [00:23:59] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:00] Reloading browsers +INFO - [00:24:00] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:01] Reloading browsers +INFO - [00:24:01] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:02] Reloading browsers +INFO - [00:24:02] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:03] Reloading browsers +INFO - [00:24:03] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:04] Reloading browsers +INFO - [00:24:04] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:04] Reloading browsers +INFO - [00:24:04] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:05] Reloading browsers +INFO - [00:24:05] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:06] Reloading browsers +INFO - [00:24:06] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:07] Reloading browsers +INFO - [00:24:07] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:08] Reloading browsers +INFO - [00:24:08] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:08] Reloading browsers +INFO - [00:24:08] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:09] Reloading browsers +INFO - [00:24:09] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:10] Reloading browsers +INFO - [00:24:10] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:11] Reloading browsers +INFO - [00:24:11] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:12] Reloading browsers +INFO - [00:24:12] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:13] Reloading browsers +INFO - [00:24:13] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:13] Reloading browsers +INFO - [00:24:13] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:14] Reloading browsers +INFO - [00:24:14] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:15] Reloading browsers +INFO - [00:24:15] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:16] Reloading browsers +INFO - [00:24:16] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:17] Reloading browsers +INFO - [00:24:17] Detected file changes +INFO - Building documentation... +INFO - [00:24:17] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:17] Reloading browsers +INFO - [00:24:17] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:18] Reloading browsers +INFO - [00:24:18] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:19] Reloading browsers +INFO - [00:24:19] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:20] Reloading browsers +INFO - [00:24:20] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:21] Reloading browsers +INFO - [00:24:21] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:21] Reloading browsers +INFO - [00:24:21] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:22] Reloading browsers +INFO - [00:24:22] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:23] Reloading browsers +INFO - [00:24:23] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:24] Reloading browsers +INFO - [00:24:24] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:25] Reloading browsers +INFO - [00:24:25] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:25] Reloading browsers +INFO - [00:24:25] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:26] Reloading browsers +INFO - [00:24:26] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:27] Reloading browsers +INFO - [00:24:27] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:28] Reloading browsers +INFO - [00:24:28] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:28] Reloading browsers +INFO - [00:24:28] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:29] Reloading browsers +INFO - [00:24:29] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:30] Reloading browsers +INFO - [00:24:30] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:31] Reloading browsers +INFO - [00:24:31] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:32] Reloading browsers +INFO - [00:24:32] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:32] Reloading browsers +INFO - [00:24:32] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:33] Reloading browsers +INFO - [00:24:33] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:34] Reloading browsers +INFO - [00:24:34] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:35] Reloading browsers +INFO - [00:24:35] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:36] Reloading browsers +INFO - [00:24:36] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:37] Reloading browsers +INFO - [00:24:37] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:37] Reloading browsers +INFO - [00:24:37] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:38] Reloading browsers +INFO - [00:24:38] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:39] Reloading browsers +INFO - [00:24:39] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:40] Reloading browsers +INFO - [00:24:40] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:40] Reloading browsers +INFO - [00:24:40] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:41] Reloading browsers +INFO - [00:24:41] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:42] Reloading browsers +INFO - [00:24:42] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:43] Reloading browsers +INFO - [00:24:43] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:44] Reloading browsers +INFO - [00:24:44] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:45] Reloading browsers +INFO - [00:24:45] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:45] Reloading browsers +INFO - [00:24:45] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:46] Reloading browsers +INFO - [00:24:46] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:47] Reloading browsers +INFO - [00:24:47] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:48] Reloading browsers +INFO - [00:24:48] Detected file changes +INFO - [00:24:48] Browser connected: http://localhost:54933/docs/ +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:49] Reloading browsers +INFO - [00:24:49] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:49] Reloading browsers +INFO - [00:24:49] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:50] Reloading browsers +INFO - [00:24:50] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:51] Reloading browsers +INFO - [00:24:51] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:52] Reloading browsers +INFO - [00:24:52] Detected file changes +INFO - Building documentation... +INFO - [00:24:52] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:52] Reloading browsers +INFO - [00:24:52] Detected file changes +INFO - [00:24:53] Browser connected: http://localhost:54933/docs/ +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:53] Reloading browsers +INFO - [00:24:53] Detected file changes +INFO - Building documentation... +INFO - [00:24:53] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:54] Reloading browsers +INFO - [00:24:54] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:24:54] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:55] Reloading browsers +INFO - [00:24:55] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:24:55] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:56] Reloading browsers +INFO - [00:24:56] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:24:56] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:57] Reloading browsers +INFO - [00:24:57] Detected file changes +INFO - Building documentation... +INFO - [00:24:57] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:57] Reloading browsers +INFO - [00:24:57] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:24:58] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:58] Reloading browsers +INFO - [00:24:58] Detected file changes +INFO - Building documentation... +INFO - [00:24:58] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:59] Reloading browsers +INFO - [00:24:59] Detected file changes +INFO - Building documentation... +INFO - [00:24:59] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:00] Reloading browsers +INFO - [00:25:00] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:01] Reloading browsers +INFO - [00:25:01] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:01] Reloading browsers +INFO - [00:25:01] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:02] Reloading browsers +INFO - [00:25:02] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:03] Reloading browsers +INFO - [00:25:03] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:04] Reloading browsers +INFO - [00:25:04] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:05] Reloading browsers +INFO - [00:25:05] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:05] Reloading browsers +INFO - [00:25:05] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:06] Reloading browsers +INFO - [00:25:06] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:07] Reloading browsers +INFO - [00:25:07] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:08] Reloading browsers +INFO - [00:25:08] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:09] Reloading browsers +INFO - [00:25:09] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:09] Reloading browsers +INFO - [00:25:09] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:10] Reloading browsers +INFO - [00:25:10] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:11] Reloading browsers +INFO - [00:25:11] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:12] Reloading browsers +INFO - [00:25:12] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:12] Reloading browsers +INFO - [00:25:12] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:13] Reloading browsers +INFO - [00:25:13] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:14] Reloading browsers +INFO - [00:25:14] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:15] Reloading browsers +INFO - [00:25:15] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:16] Reloading browsers +INFO - [00:25:16] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:16] Reloading browsers +INFO - [00:25:16] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:17] Reloading browsers +INFO - [00:25:17] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:18] Reloading browsers +INFO - [00:25:18] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:19] Reloading browsers +INFO - [00:25:19] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:20] Reloading browsers +INFO - [00:25:20] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:20] Reloading browsers +INFO - [00:25:20] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:21] Reloading browsers +INFO - [00:25:21] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:22] Reloading browsers +INFO - [00:25:22] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:23] Reloading browsers +INFO - [00:25:23] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:23] Reloading browsers +INFO - [00:25:23] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:24] Reloading browsers +INFO - [00:25:24] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:25] Reloading browsers +INFO - [00:25:25] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:26] Reloading browsers +INFO - [00:25:26] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:27] Reloading browsers +INFO - [00:25:27] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:27] Reloading browsers +INFO - [00:25:27] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:28] Reloading browsers +INFO - [00:25:28] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:29] Reloading browsers +INFO - [00:25:29] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:30] Reloading browsers +INFO - [00:25:30] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:31] Reloading browsers +INFO - [00:25:31] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:31] Reloading browsers +INFO - [00:25:31] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:32] Reloading browsers +INFO - [00:25:32] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:33] Reloading browsers +INFO - [00:25:33] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:34] Reloading browsers +INFO - [00:25:34] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:35] Reloading browsers +INFO - [00:25:35] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:36] Reloading browsers +INFO - [00:25:36] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:36] Reloading browsers +INFO - [00:25:36] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:37] Reloading browsers +INFO - [00:25:37] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:38] Reloading browsers +INFO - [00:25:38] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:39] Reloading browsers +INFO - [00:25:39] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:39] Reloading browsers +INFO - [00:25:39] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:40] Reloading browsers +INFO - [00:25:40] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:41] Reloading browsers +INFO - [00:25:41] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:42] Reloading browsers +INFO - [00:25:42] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:43] Reloading browsers +INFO - [00:25:43] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:43] Reloading browsers +INFO - [00:25:43] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:44] Reloading browsers +INFO - [00:25:44] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:45] Reloading browsers +INFO - [00:25:45] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:46] Reloading browsers +INFO - [00:25:46] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:47] Reloading browsers +INFO - [00:25:47] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:47] Reloading browsers +INFO - [00:25:47] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:48] Reloading browsers +INFO - [00:25:48] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:49] Reloading browsers +INFO - [00:25:49] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:50] Reloading browsers +INFO - [00:25:50] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:51] Reloading browsers +INFO - [00:25:51] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:51] Reloading browsers +INFO - [00:25:51] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:52] Reloading browsers +INFO - [00:25:52] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:53] Reloading browsers +INFO - [00:25:53] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:54] Reloading browsers +INFO - [00:25:54] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:54] Reloading browsers +INFO - [00:25:54] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:55] Reloading browsers +INFO - [00:25:55] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:56] Reloading browsers +INFO - [00:25:56] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:57] Reloading browsers +INFO - [00:25:57] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:58] Reloading browsers +INFO - [00:25:58] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:59] Reloading browsers +INFO - [00:25:59] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:00] Reloading browsers +INFO - [00:26:00] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:00] Reloading browsers +INFO - [00:26:00] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:01] Reloading browsers +INFO - [00:26:01] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:02] Reloading browsers +INFO - [00:26:02] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:03] Reloading browsers +INFO - [00:26:03] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:03] Reloading browsers +INFO - [00:26:03] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:04] Reloading browsers +INFO - [00:26:04] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:05] Reloading browsers +INFO - [00:26:05] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:06] Reloading browsers +INFO - [00:26:06] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:07] Reloading browsers +INFO - [00:26:07] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:07] Reloading browsers +INFO - [00:26:07] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:08] Reloading browsers +INFO - [00:26:08] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:09] Reloading browsers +INFO - [00:26:09] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:10] Reloading browsers +INFO - [00:26:10] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:11] Reloading browsers +INFO - [00:26:11] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:11] Reloading browsers +INFO - [00:26:11] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:12] Reloading browsers +INFO - [00:26:12] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:13] Reloading browsers +INFO - [00:26:13] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:14] Reloading browsers +INFO - [00:26:14] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:15] Reloading browsers +INFO - [00:26:15] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:15] Reloading browsers +INFO - [00:26:15] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:16] Reloading browsers +INFO - [00:26:16] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:17] Reloading browsers +INFO - [00:26:17] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:18] Reloading browsers +INFO - [00:26:18] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:19] Reloading browsers +INFO - [00:26:19] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:20] Reloading browsers +INFO - [00:26:20] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Documentation built in 0.88 seconds +INFO - [00:26:21] Reloading browsers +INFO - [00:26:21] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:22] Reloading browsers +INFO - [00:26:22] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:23] Reloading browsers +INFO - [00:26:23] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:24] Reloading browsers +INFO - [00:26:24] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:24] Reloading browsers +INFO - [00:26:24] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:25] Reloading browsers +INFO - [00:26:25] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:26] Reloading browsers +INFO - [00:26:26] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:27] Reloading browsers +INFO - [00:26:27] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:28] Reloading browsers +INFO - [00:26:28] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:29] Reloading browsers +INFO - [00:26:29] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:30] Reloading browsers +INFO - [00:26:30] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:30] Reloading browsers +INFO - [00:26:30] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:31] Reloading browsers +INFO - [00:26:31] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:32] Reloading browsers +INFO - [00:26:32] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:33] Reloading browsers +INFO - [00:26:33] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:34] Reloading browsers +INFO - [00:26:34] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:35] Reloading browsers +INFO - [00:26:35] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:35] Reloading browsers +INFO - [00:26:35] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:36] Reloading browsers +INFO - [00:26:36] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:37] Reloading browsers +INFO - [00:26:37] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:38] Reloading browsers +INFO - [00:26:38] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:39] Reloading browsers +INFO - [00:26:39] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:40] Reloading browsers +INFO - [00:26:40] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:41] Reloading browsers +INFO - [00:26:41] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:42] Reloading browsers +INFO - [00:26:42] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:42] Reloading browsers +INFO - [00:26:42] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:43] Reloading browsers +INFO - [00:26:43] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:44] Reloading browsers +INFO - [00:26:44] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:45] Reloading browsers +INFO - [00:26:45] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:46] Reloading browsers +INFO - [00:26:46] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:47] Reloading browsers +INFO - [00:26:47] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:48] Reloading browsers +INFO - [00:26:48] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:48] Reloading browsers +INFO - [00:26:48] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:49] Reloading browsers +INFO - [00:26:49] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:50] Reloading browsers +INFO - [00:26:50] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:51] Reloading browsers +INFO - [00:26:51] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:52] Reloading browsers +INFO - [00:26:52] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:52] Reloading browsers +INFO - [00:26:52] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:53] Reloading browsers +INFO - [00:26:53] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:54] Reloading browsers +INFO - [00:26:54] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:55] Reloading browsers +INFO - [00:26:55] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:56] Reloading browsers +INFO - [00:26:56] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:56] Reloading browsers +INFO - [00:26:56] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:57] Reloading browsers +INFO - [00:26:57] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:58] Reloading browsers +INFO - [00:26:58] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:59] Reloading browsers +INFO - [00:26:59] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:00] Reloading browsers +INFO - [00:27:00] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:01] Reloading browsers +INFO - [00:27:01] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:02] Reloading browsers +INFO - [00:27:02] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:02] Reloading browsers +INFO - [00:27:02] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:03] Reloading browsers +INFO - [00:27:03] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:04] Reloading browsers +INFO - [00:27:04] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:05] Reloading browsers +INFO - [00:27:05] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:06] Reloading browsers +INFO - [00:27:06] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:07] Reloading browsers +INFO - [00:27:07] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:07] Reloading browsers +INFO - [00:27:07] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:08] Reloading browsers +INFO - [00:27:08] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:09] Reloading browsers +INFO - [00:27:09] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:10] Reloading browsers +INFO - [00:27:10] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:11] Reloading browsers +INFO - [00:27:11] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:11] Reloading browsers +INFO - [00:27:11] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:12] Reloading browsers +INFO - [00:27:12] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:13] Reloading browsers +INFO - [00:27:13] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:14] Reloading browsers +INFO - [00:27:14] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:15] Reloading browsers +INFO - [00:27:15] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:16] Reloading browsers +INFO - [00:27:16] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:16] Reloading browsers +INFO - [00:27:16] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:17] Reloading browsers +INFO - [00:27:17] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:18] Reloading browsers +INFO - [00:27:18] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:19] Reloading browsers +INFO - [00:27:19] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:20] Reloading browsers +INFO - [00:27:20] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:20] Reloading browsers +INFO - [00:27:20] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:21] Reloading browsers +INFO - [00:27:21] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:22] Reloading browsers +INFO - [00:27:22] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:23] Reloading browsers +INFO - [00:27:23] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:24] Reloading browsers +INFO - [00:27:24] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:24] Reloading browsers +INFO - [00:27:24] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:25] Reloading browsers +INFO - [00:27:25] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:26] Reloading browsers +INFO - [00:27:26] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:27] Reloading browsers +INFO - [00:27:27] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:28] Reloading browsers +INFO - [00:27:28] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:28] Reloading browsers +INFO - [00:27:28] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:29] Reloading browsers +INFO - [00:27:29] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:30] Reloading browsers +INFO - [00:27:30] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:31] Reloading browsers +INFO - [00:27:31] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:32] Reloading browsers +INFO - [00:27:32] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:32] Reloading browsers +INFO - [00:27:32] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:33] Reloading browsers +INFO - [00:27:33] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:34] Reloading browsers +INFO - [00:27:34] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:35] Reloading browsers +INFO - [00:27:35] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:36] Reloading browsers +INFO - [00:27:36] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:36] Reloading browsers +INFO - [00:27:36] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:37] Reloading browsers +INFO - [00:27:37] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:38] Reloading browsers +INFO - [00:27:38] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:39] Reloading browsers +INFO - [00:27:39] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:40] Reloading browsers +INFO - [00:27:40] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:40] Reloading browsers +INFO - [00:27:40] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:41] Reloading browsers +INFO - [00:27:41] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:42] Reloading browsers +INFO - [00:27:42] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:43] Reloading browsers +INFO - [00:27:43] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:44] Reloading browsers +INFO - [00:27:44] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:44] Reloading browsers +INFO - [00:27:44] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:45] Reloading browsers +INFO - [00:27:45] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:46] Reloading browsers +INFO - [00:27:46] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:47] Reloading browsers +INFO - [00:27:47] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:48] Reloading browsers +INFO - [00:27:48] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:48] Reloading browsers +INFO - [00:27:48] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:49] Reloading browsers +INFO - [00:27:49] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:50] Reloading browsers +INFO - [00:27:50] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:51] Reloading browsers +INFO - [00:27:51] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:52] Reloading browsers +INFO - [00:27:52] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:52] Reloading browsers +INFO - [00:27:52] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:53] Reloading browsers +INFO - [00:27:53] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:54] Reloading browsers +INFO - [00:27:54] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:55] Reloading browsers +INFO - [00:27:55] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:56] Reloading browsers +INFO - [00:27:56] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:56] Reloading browsers +INFO - [00:27:56] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:57] Reloading browsers +INFO - [00:27:57] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:58] Reloading browsers +INFO - [00:27:58] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:59] Reloading browsers +INFO - [00:27:59] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:00] Reloading browsers +INFO - [00:28:00] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:00] Reloading browsers +INFO - [00:28:00] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:01] Reloading browsers +INFO - [00:28:01] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:02] Reloading browsers +INFO - [00:28:02] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:03] Reloading browsers +INFO - [00:28:03] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:04] Reloading browsers +INFO - [00:28:04] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:04] Reloading browsers +INFO - [00:28:04] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:05] Reloading browsers +INFO - [00:28:05] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:06] Reloading browsers +INFO - [00:28:06] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:07] Reloading browsers +INFO - [00:28:07] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:07] Reloading browsers +INFO - [00:28:07] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:08] Reloading browsers +INFO - [00:28:08] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:09] Reloading browsers +INFO - [00:28:09] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:10] Reloading browsers +INFO - [00:28:10] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:11] Reloading browsers +INFO - [00:28:11] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:12] Reloading browsers +INFO - [00:28:12] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:12] Reloading browsers +INFO - [00:28:12] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:13] Reloading browsers +INFO - [00:28:13] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:14] Reloading browsers +INFO - [00:28:14] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:15] Reloading browsers +INFO - [00:28:15] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:16] Reloading browsers +INFO - [00:28:16] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:16] Reloading browsers +INFO - [00:28:16] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:17] Reloading browsers +INFO - [00:28:17] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:18] Reloading browsers +INFO - [00:28:18] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:19] Reloading browsers +INFO - [00:28:19] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:20] Reloading browsers +INFO - [00:28:20] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:20] Reloading browsers +INFO - [00:28:20] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:21] Reloading browsers +INFO - [00:28:21] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:22] Reloading browsers +INFO - [00:28:22] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:23] Reloading browsers +INFO - [00:28:23] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:24] Reloading browsers +INFO - [00:28:24] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:25] Reloading browsers +INFO - [00:28:25] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:25] Reloading browsers +INFO - [00:28:25] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:26] Reloading browsers +INFO - [00:28:26] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:27] Reloading browsers +INFO - [00:28:27] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:28] Reloading browsers +INFO - [00:28:28] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:29] Reloading browsers +INFO - [00:28:29] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:29] Reloading browsers +INFO - [00:28:29] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:30] Reloading browsers +INFO - [00:28:30] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:31] Reloading browsers +INFO - [00:28:31] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:32] Reloading browsers +INFO - [00:28:32] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:32] Reloading browsers +INFO - [00:28:32] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:33] Reloading browsers +INFO - [00:28:33] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:34] Reloading browsers +INFO - [00:28:34] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:35] Reloading browsers +INFO - [00:28:35] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:36] Reloading browsers +INFO - [00:28:36] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:36] Reloading browsers +INFO - [00:28:36] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:37] Reloading browsers +INFO - [00:28:37] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:38] Reloading browsers +INFO - [00:28:38] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:39] Reloading browsers +INFO - [00:28:39] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:39] Reloading browsers +INFO - [00:28:39] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:40] Reloading browsers +INFO - [00:28:40] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:41] Reloading browsers +INFO - [00:28:41] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:42] Reloading browsers +INFO - [00:28:42] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:43] Reloading browsers +INFO - [00:28:43] Detected file changes +INFO - [00:28:43] Browser connected: http://localhost:54933/docs/ +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:43] Reloading browsers +INFO - [00:28:43] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:28:44] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:44] Reloading browsers +INFO - [00:28:44] Detected file changes +INFO - Building documentation... +INFO - [00:28:44] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:45] Reloading browsers +INFO - [00:28:45] Detected file changes +INFO - Building documentation... +INFO - [00:28:46] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:46] Reloading browsers +INFO - [00:28:46] Detected file changes +INFO - [00:28:46] Browser connected: http://localhost:54933/docs/ +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:47] Reloading browsers +INFO - [00:28:47] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:28:47] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:48] Reloading browsers +INFO - [00:28:48] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:28:48] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:49] Reloading browsers +INFO - [00:28:49] Detected file changes +INFO - [00:28:49] Browser connected: http://localhost:54933/docs/ +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:50] Reloading browsers +INFO - [00:28:50] Detected file changes +INFO - Building documentation... +INFO - [00:28:50] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:50] Reloading browsers +INFO - [00:28:50] Detected file changes +INFO - [00:28:51] Browser connected: http://localhost:54933/docs/ +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:51] Reloading browsers +INFO - [00:28:51] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +INFO - [00:28:52] Browser connected: http://localhost:54933/docs/ +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:52] Reloading browsers +INFO - [00:28:52] Detected file changes +INFO - [00:28:52] Browser connected: http://localhost:54933/docs/ +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:53] Reloading browsers +INFO - [00:28:53] Detected file changes +INFO - Building documentation... +INFO - [00:28:53] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:54] Reloading browsers +INFO - [00:28:54] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:28:54] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:55] Reloading browsers +INFO - [00:28:55] Detected file changes +INFO - Building documentation... +INFO - [00:28:55] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:56] Reloading browsers +INFO - [00:28:56] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:28:56] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:56] Reloading browsers +INFO - [00:28:56] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:28:57] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:57] Reloading browsers +INFO - [00:28:57] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:58] Reloading browsers +INFO - [00:28:58] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:59] Reloading browsers +INFO - [00:28:59] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:00] Reloading browsers +INFO - [00:29:00] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:00] Reloading browsers +INFO - [00:29:00] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:01] Reloading browsers +INFO - [00:29:01] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:02] Reloading browsers +INFO - [00:29:02] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:03] Reloading browsers +INFO - [00:29:03] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:04] Reloading browsers +INFO - [00:29:04] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:04] Reloading browsers +INFO - [00:29:04] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:05] Reloading browsers +INFO - [00:29:05] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:06] Reloading browsers +INFO - [00:29:06] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:07] Reloading browsers +INFO - [00:29:07] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:08] Reloading browsers +INFO - [00:29:08] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:09] Reloading browsers +INFO - [00:29:09] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:09] Reloading browsers +INFO - [00:29:09] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:10] Reloading browsers +INFO - [00:29:10] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:11] Reloading browsers +INFO - [00:29:11] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:12] Reloading browsers +INFO - [00:29:12] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:13] Reloading browsers +INFO - [00:29:13] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:14] Reloading browsers +INFO - [00:29:14] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:14] Reloading browsers +INFO - [00:29:14] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:15] Reloading browsers +INFO - [00:29:15] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:16] Reloading browsers +INFO - [00:29:16] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:17] Reloading browsers +INFO - [00:29:17] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:18] Reloading browsers +INFO - [00:29:18] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:18] Reloading browsers +INFO - [00:29:18] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:19] Reloading browsers +INFO - [00:29:19] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:20] Reloading browsers +INFO - [00:29:20] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:21] Reloading browsers +INFO - [00:29:21] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:22] Reloading browsers +INFO - [00:29:22] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:23] Reloading browsers +INFO - [00:29:23] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:23] Reloading browsers +INFO - [00:29:23] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:24] Reloading browsers +INFO - [00:29:24] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:25] Reloading browsers +INFO - [00:29:25] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:26] Reloading browsers +INFO - [00:29:26] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Documentation built in 0.81 seconds +INFO - [00:29:27] Reloading browsers +INFO - [00:29:27] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:28] Reloading browsers +INFO - [00:29:28] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:29] Reloading browsers +INFO - [00:29:29] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:29] Reloading browsers +INFO - [00:29:29] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:30] Reloading browsers +INFO - [00:29:30] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:31] Reloading browsers +INFO - [00:29:31] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:32] Reloading browsers +INFO - [00:29:32] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:33] Reloading browsers +INFO - [00:29:33] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:34] Reloading browsers +INFO - [00:29:34] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:34] Reloading browsers +INFO - [00:29:34] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:35] Reloading browsers +INFO - [00:29:35] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:36] Reloading browsers +INFO - [00:29:36] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Documentation built in 1.01 seconds +INFO - [00:29:37] Reloading browsers +INFO - [00:29:37] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:38] Reloading browsers +INFO - [00:29:38] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:39] Reloading browsers +INFO - [00:29:39] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:40] Reloading browsers +INFO - [00:29:40] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:41] Reloading browsers +INFO - [00:29:41] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:42] Reloading browsers +INFO - [00:29:42] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:42] Reloading browsers +INFO - [00:29:42] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:43] Reloading browsers +INFO - [00:29:43] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:44] Reloading browsers +INFO - [00:29:44] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:45] Reloading browsers +INFO - [00:29:45] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:46] Reloading browsers +INFO - [00:29:46] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:47] Reloading browsers +INFO - [00:29:47] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:47] Reloading browsers +INFO - [00:29:47] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:48] Reloading browsers +INFO - [00:29:48] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:49] Reloading browsers +INFO - [00:29:49] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:50] Reloading browsers +INFO - [00:29:50] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:51] Reloading browsers +INFO - [00:29:51] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:51] Reloading browsers +INFO - [00:29:51] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:52] Reloading browsers +INFO - [00:29:52] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:53] Reloading browsers +INFO - [00:29:53] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:54] Reloading browsers +INFO - [00:29:54] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:55] Reloading browsers +INFO - [00:29:55] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:56] Reloading browsers +INFO - [00:29:56] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:56] Reloading browsers +INFO - [00:29:56] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:57] Reloading browsers +INFO - [00:29:57] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:58] Reloading browsers +INFO - [00:29:58] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:59] Reloading browsers +INFO - [00:29:59] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:00] Reloading browsers +INFO - [00:30:00] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:01] Reloading browsers +INFO - [00:30:01] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:02] Reloading browsers +INFO - [00:30:02] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:02] Reloading browsers +INFO - [00:30:02] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:03] Reloading browsers +INFO - [00:30:03] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:04] Reloading browsers +INFO - [00:30:04] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:05] Reloading browsers +INFO - [00:30:05] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:06] Reloading browsers +INFO - [00:30:06] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:07] Reloading browsers +INFO - [00:30:07] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:07] Reloading browsers +INFO - [00:30:07] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:08] Reloading browsers +INFO - [00:30:08] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:09] Reloading browsers +INFO - [00:30:09] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:10] Reloading browsers +INFO - [00:30:10] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:11] Reloading browsers +INFO - [00:30:11] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:12] Reloading browsers +INFO - [00:30:12] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:13] Reloading browsers +INFO - [00:30:13] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:14] Reloading browsers +INFO - [00:30:14] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:15] Reloading browsers +INFO - [00:30:15] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:15] Reloading browsers +INFO - [00:30:15] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:16] Reloading browsers +INFO - [00:30:16] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:17] Reloading browsers +INFO - [00:30:17] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:18] Reloading browsers +INFO - [00:30:18] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:18] Reloading browsers +INFO - [00:30:18] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:19] Reloading browsers +INFO - [00:30:19] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:20] Reloading browsers +INFO - [00:30:20] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:21] Reloading browsers +INFO - [00:30:21] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:22] Reloading browsers +INFO - [00:30:22] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:23] Reloading browsers +INFO - [00:30:23] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:24] Reloading browsers +INFO - [00:30:24] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:24] Reloading browsers +INFO - [00:30:24] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:25] Reloading browsers +INFO - [00:30:25] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:26] Reloading browsers +INFO - [00:30:26] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:27] Reloading browsers +INFO - [00:30:27] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:28] Reloading browsers +INFO - [00:30:28] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:29] Reloading browsers +INFO - [00:30:29] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:29] Reloading browsers +INFO - [00:30:29] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:30] Reloading browsers +INFO - [00:30:30] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:31] Reloading browsers +INFO - [00:30:31] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:32] Reloading browsers +INFO - [00:30:32] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:33] Reloading browsers +INFO - [00:30:33] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:34] Reloading browsers +INFO - [00:30:34] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:34] Reloading browsers +INFO - [00:30:34] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:35] Reloading browsers +INFO - [00:30:35] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:36] Reloading browsers +INFO - [00:30:36] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:37] Reloading browsers +INFO - [00:30:37] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:38] Reloading browsers +INFO - [00:30:38] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:38] Reloading browsers +INFO - [00:30:38] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:39] Reloading browsers +INFO - [00:30:39] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:40] Reloading browsers +INFO - [00:30:40] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:41] Reloading browsers +INFO - [00:30:41] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:42] Reloading browsers +INFO - [00:30:42] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:42] Reloading browsers +INFO - [00:30:42] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:43] Reloading browsers +INFO - [00:30:43] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:44] Reloading browsers +INFO - [00:30:44] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:45] Reloading browsers +INFO - [00:30:45] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:46] Reloading browsers +INFO - [00:30:46] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:47] Reloading browsers +INFO - [00:30:47] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:47] Reloading browsers +INFO - [00:30:47] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:48] Reloading browsers +INFO - [00:30:48] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:49] Reloading browsers +INFO - [00:30:49] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:50] Reloading browsers +INFO - [00:30:50] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:51] Reloading browsers +INFO - [00:30:51] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:51] Reloading browsers +INFO - [00:30:51] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:52] Reloading browsers +INFO - [00:30:52] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:53] Reloading browsers +INFO - [00:30:53] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:54] Reloading browsers +INFO - [00:30:54] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:55] Reloading browsers +INFO - [00:30:55] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:55] Reloading browsers +INFO - [00:30:55] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:56] Reloading browsers +INFO - [00:30:56] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:57] Reloading browsers +INFO - [00:30:57] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:58] Reloading browsers +INFO - [00:30:58] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:59] Reloading browsers +INFO - [00:30:59] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:00] Reloading browsers +INFO - [00:31:00] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:01] Reloading browsers +INFO - [00:31:01] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:01] Reloading browsers +INFO - [00:31:01] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:02] Reloading browsers +INFO - [00:31:02] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:03] Reloading browsers +INFO - [00:31:03] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:04] Reloading browsers +INFO - [00:31:04] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:05] Reloading browsers +INFO - [00:31:05] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:06] Reloading browsers +INFO - [00:31:06] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:06] Reloading browsers +INFO - [00:31:06] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:07] Reloading browsers +INFO - [00:31:07] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:08] Reloading browsers +INFO - [00:31:08] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:09] Reloading browsers +INFO - [00:31:09] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:10] Reloading browsers +INFO - [00:31:10] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:11] Reloading browsers +INFO - [00:31:11] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:11] Reloading browsers +INFO - [00:31:11] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:12] Reloading browsers +INFO - [00:31:12] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:13] Reloading browsers +INFO - [00:31:13] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:14] Reloading browsers +INFO - [00:31:14] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:15] Reloading browsers +INFO - [00:31:15] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:15] Reloading browsers +INFO - [00:31:15] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:16] Reloading browsers +INFO - [00:31:16] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:17] Reloading browsers +INFO - [00:31:17] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:18] Reloading browsers +INFO - [00:31:18] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:19] Reloading browsers +INFO - [00:31:19] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:20] Reloading browsers +INFO - [00:31:20] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:20] Reloading browsers +INFO - [00:31:20] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:21] Reloading browsers +INFO - [00:31:21] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:22] Reloading browsers +INFO - [00:31:22] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:23] Reloading browsers +INFO - [00:31:23] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:24] Reloading browsers +INFO - [00:31:24] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:25] Reloading browsers +INFO - [00:31:25] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:25] Reloading browsers +INFO - [00:31:25] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:26] Reloading browsers +INFO - [00:31:26] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:27] Reloading browsers +INFO - [00:31:27] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:28] Reloading browsers +INFO - [00:31:28] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:29] Reloading browsers +INFO - [00:31:29] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:29] Reloading browsers +INFO - [00:31:29] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:30] Reloading browsers +INFO - [00:31:30] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:31] Reloading browsers +INFO - [00:31:31] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:32] Reloading browsers +INFO - [00:31:32] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:33] Reloading browsers +INFO - [00:31:33] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:34] Reloading browsers +INFO - [00:31:34] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:34] Reloading browsers +INFO - [00:31:34] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:35] Reloading browsers +INFO - [00:31:35] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:36] Reloading browsers +INFO - [00:31:36] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:37] Reloading browsers +INFO - [00:31:37] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:38] Reloading browsers +INFO - [00:31:38] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:38] Reloading browsers +INFO - [00:31:38] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:39] Reloading browsers +INFO - [00:31:39] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:40] Reloading browsers +INFO - [00:31:40] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:41] Reloading browsers +INFO - [00:31:41] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:42] Reloading browsers +INFO - [00:31:42] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:43] Reloading browsers +INFO - [00:31:43] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:43] Reloading browsers +INFO - [00:31:43] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:44] Reloading browsers +INFO - [00:31:44] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:45] Reloading browsers +INFO - [00:31:45] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:46] Reloading browsers +INFO - [00:31:46] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:47] Reloading browsers +INFO - [00:31:47] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:48] Reloading browsers +INFO - [00:31:48] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:48] Reloading browsers +INFO - [00:31:48] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:49] Reloading browsers +INFO - [00:31:49] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:50] Reloading browsers +INFO - [00:31:50] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:51] Reloading browsers +INFO - [00:31:51] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:52] Reloading browsers +INFO - [00:31:52] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:53] Reloading browsers +INFO - [00:31:53] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:53] Reloading browsers +INFO - [00:31:53] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:54] Reloading browsers +INFO - [00:31:54] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:55] Reloading browsers +INFO - [00:31:55] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:56] Reloading browsers +INFO - [00:31:56] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:57] Reloading browsers +INFO - [00:31:57] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:58] Reloading browsers +INFO - [00:31:58] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:59] Reloading browsers +INFO - [00:31:59] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:59] Reloading browsers +INFO - [00:31:59] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:00] Reloading browsers +INFO - [00:32:00] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:01] Reloading browsers +INFO - [00:32:01] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:02] Reloading browsers +INFO - [00:32:02] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:03] Reloading browsers +INFO - [00:32:03] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:03] Reloading browsers +INFO - [00:32:03] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:04] Reloading browsers +INFO - [00:32:04] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:05] Reloading browsers +INFO - [00:32:05] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:06] Reloading browsers +INFO - [00:32:06] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:07] Reloading browsers +INFO - [00:32:07] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:07] Reloading browsers +INFO - [00:32:07] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:08] Reloading browsers +INFO - [00:32:08] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:09] Reloading browsers +INFO - [00:32:09] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:10] Reloading browsers +INFO - [00:32:10] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:11] Reloading browsers +INFO - [00:32:11] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:11] Reloading browsers +INFO - [00:32:11] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:12] Reloading browsers +INFO - [00:32:12] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:13] Reloading browsers +INFO - [00:32:13] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:14] Reloading browsers +INFO - [00:32:14] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:15] Reloading browsers +INFO - [00:32:15] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:15] Reloading browsers +INFO - [00:32:15] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:16] Reloading browsers +INFO - [00:32:16] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:17] Reloading browsers +INFO - [00:32:17] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:18] Reloading browsers +INFO - [00:32:18] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:19] Reloading browsers +INFO - [00:32:19] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:19] Reloading browsers +INFO - [00:32:19] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:20] Reloading browsers +INFO - [00:32:20] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:21] Reloading browsers +INFO - [00:32:21] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:22] Reloading browsers +INFO - [00:32:22] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:22] Reloading browsers +INFO - [00:32:22] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:23] Reloading browsers +INFO - [00:32:23] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:24] Reloading browsers +INFO - [00:32:24] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:25] Reloading browsers +INFO - [00:32:25] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:26] Reloading browsers +INFO - [00:32:26] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:26] Reloading browsers +INFO - [00:32:26] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:27] Reloading browsers +INFO - [00:32:27] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:28] Reloading browsers +INFO - [00:32:28] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:29] Reloading browsers +INFO - [00:32:29] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:30] Reloading browsers +INFO - [00:32:30] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:30] Reloading browsers +INFO - [00:32:30] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:31] Reloading browsers +INFO - [00:32:31] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:32] Reloading browsers +INFO - [00:32:32] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:33] Reloading browsers +INFO - [00:32:33] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:34] Reloading browsers +INFO - [00:32:34] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:34] Reloading browsers +INFO - [00:32:34] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:35] Reloading browsers +INFO - [00:32:35] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:36] Reloading browsers +INFO - [00:32:36] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:37] Reloading browsers +INFO - [00:32:37] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:38] Reloading browsers +INFO - [00:32:38] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:39] Reloading browsers +INFO - [00:32:39] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:39] Reloading browsers +INFO - [00:32:39] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:40] Reloading browsers +INFO - [00:32:40] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:41] Reloading browsers +INFO - [00:32:41] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:42] Reloading browsers +INFO - [00:32:42] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:42] Reloading browsers +INFO - [00:32:42] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:43] Reloading browsers +INFO - [00:32:43] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:44] Reloading browsers +INFO - [00:32:44] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:45] Reloading browsers +INFO - [00:32:45] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:46] Reloading browsers +INFO - [00:32:46] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:46] Reloading browsers +INFO - [00:32:46] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:47] Reloading browsers +INFO - [00:32:47] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:48] Reloading browsers +INFO - [00:32:48] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:49] Reloading browsers +INFO - [00:32:49] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:50] Reloading browsers +INFO - [00:32:50] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:50] Reloading browsers +INFO - [00:32:50] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:51] Reloading browsers +INFO - [00:32:51] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:52] Reloading browsers +INFO - [00:32:52] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Documentation built in 0.61 seconds +INFO - [00:32:53] Reloading browsers +INFO - [00:32:53] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:53] Reloading browsers +INFO - [00:32:53] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:54] Reloading browsers +INFO - [00:32:54] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:55] Reloading browsers +INFO - [00:32:55] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:56] Reloading browsers +INFO - [00:32:56] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:57] Reloading browsers +INFO - [00:32:57] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:58] Reloading browsers +INFO - [00:32:58] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:59] Reloading browsers +INFO - [00:32:59] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:00] Reloading browsers +INFO - [00:33:00] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:00] Reloading browsers +INFO - [00:33:00] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:01] Reloading browsers +INFO - [00:33:01] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:02] Reloading browsers +INFO - [00:33:02] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:03] Reloading browsers +INFO - [00:33:03] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:04] Reloading browsers +INFO - [00:33:04] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:04] Reloading browsers +INFO - [00:33:04] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:05] Reloading browsers +INFO - [00:33:05] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:06] Reloading browsers +INFO - [00:33:06] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:07] Reloading browsers +INFO - [00:33:07] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:08] Reloading browsers +INFO - [00:33:08] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:08] Reloading browsers +INFO - [00:33:08] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:09] Reloading browsers +INFO - [00:33:09] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:10] Reloading browsers +INFO - [00:33:10] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:11] Reloading browsers +INFO - [00:33:11] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:11] Reloading browsers +INFO - [00:33:12] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:12] Reloading browsers +INFO - [00:33:12] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:13] Reloading browsers +INFO - [00:33:13] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:14] Reloading browsers +INFO - [00:33:14] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:15] Reloading browsers +INFO - [00:33:15] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:15] Reloading browsers +INFO - [00:33:15] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:16] Reloading browsers +INFO - [00:33:16] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:17] Reloading browsers +INFO - [00:33:17] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:18] Reloading browsers +INFO - [00:33:18] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:19] Reloading browsers +INFO - [00:33:19] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:19] Reloading browsers +INFO - [00:33:19] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:20] Reloading browsers +INFO - [00:33:20] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:21] Reloading browsers +INFO - [00:33:21] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:22] Reloading browsers +INFO - [00:33:22] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:23] Reloading browsers +INFO - [00:33:23] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:23] Reloading browsers +INFO - [00:33:23] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:24] Reloading browsers +INFO - [00:33:24] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:25] Reloading browsers +INFO - [00:33:25] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:26] Reloading browsers +INFO - [00:33:26] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:27] Reloading browsers +INFO - [00:33:27] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:28] Reloading browsers +INFO - [00:33:28] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:29] Reloading browsers +INFO - [00:33:29] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:29] Reloading browsers +INFO - [00:33:29] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:30] Reloading browsers +INFO - [00:33:30] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:31] Reloading browsers +INFO - [00:33:31] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:32] Reloading browsers +INFO - [00:33:32] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:33] Reloading browsers +INFO - [00:33:33] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:34] Reloading browsers +INFO - [00:33:34] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:34] Reloading browsers +INFO - [00:33:34] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:35] Reloading browsers +INFO - [00:33:35] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:36] Reloading browsers +INFO - [00:33:36] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:37] Reloading browsers +INFO - [00:33:37] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:37] Reloading browsers +INFO - [00:33:37] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:38] Reloading browsers +INFO - [00:33:38] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:39] Reloading browsers +INFO - [00:33:39] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:40] Reloading browsers +INFO - [00:33:40] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:41] Reloading browsers +INFO - [00:33:41] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:41] Reloading browsers +INFO - [00:33:41] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:42] Reloading browsers +INFO - [00:33:42] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:43] Reloading browsers +INFO - [00:33:43] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:44] Reloading browsers +INFO - [00:33:44] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:44] Reloading browsers +INFO - [00:33:44] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:45] Reloading browsers +INFO - [00:33:45] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:46] Reloading browsers +INFO - [00:33:46] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:47] Reloading browsers +INFO - [00:33:47] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:48] Reloading browsers +INFO - [00:33:48] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:48] Reloading browsers +INFO - [00:33:48] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:49] Reloading browsers +INFO - [00:33:49] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:50] Reloading browsers +INFO - [00:33:50] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:51] Reloading browsers +INFO - [00:33:51] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:51] Reloading browsers +INFO - [00:33:51] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:52] Reloading browsers +INFO - [00:33:52] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:53] Reloading browsers +INFO - [00:33:53] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:54] Reloading browsers +INFO - [00:33:54] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:55] Reloading browsers +INFO - [00:33:55] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:55] Reloading browsers +INFO - [00:33:55] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:56] Reloading browsers +INFO - [00:33:56] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:57] Reloading browsers +INFO - [00:33:57] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:58] Reloading browsers +INFO - [00:33:58] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:58] Reloading browsers +INFO - [00:33:58] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:59] Reloading browsers +INFO - [00:33:59] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:00] Reloading browsers +INFO - [00:34:00] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:01] Reloading browsers +INFO - [00:34:01] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:02] Reloading browsers +INFO - [00:34:02] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:02] Reloading browsers +INFO - [00:34:02] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:03] Reloading browsers +INFO - [00:34:03] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:04] Reloading browsers +INFO - [00:34:04] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:05] Reloading browsers +INFO - [00:34:05] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:05] Reloading browsers +INFO - [00:34:05] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:06] Reloading browsers +INFO - [00:34:06] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:07] Reloading browsers +INFO - [00:34:07] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:08] Reloading browsers +INFO - [00:34:08] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:09] Reloading browsers +INFO - [00:34:09] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:10] Reloading browsers +INFO - [00:34:10] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:10] Reloading browsers +INFO - [00:34:10] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:11] Reloading browsers +INFO - [00:34:11] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:12] Reloading browsers +INFO - [00:34:12] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:13] Reloading browsers +INFO - [00:34:13] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:14] Reloading browsers +INFO - [00:34:14] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:14] Reloading browsers +INFO - [00:34:14] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:15] Reloading browsers +INFO - [00:34:15] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:16] Reloading browsers +INFO - [00:34:16] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:17] Reloading browsers +INFO - [00:34:17] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:18] Reloading browsers +INFO - [00:34:18] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:18] Reloading browsers +INFO - [00:34:18] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:19] Reloading browsers +INFO - [00:34:19] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:20] Reloading browsers +INFO - [00:34:20] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:21] Reloading browsers +INFO - [00:34:21] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:21] Reloading browsers +INFO - [00:34:21] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:22] Reloading browsers +INFO - [00:34:22] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:23] Reloading browsers +INFO - [00:34:23] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:24] Reloading browsers +INFO - [00:34:24] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:25] Reloading browsers +INFO - [00:34:25] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:25] Reloading browsers +INFO - [00:34:25] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:26] Reloading browsers +INFO - [00:34:26] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:27] Reloading browsers +INFO - [00:34:27] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:28] Reloading browsers +INFO - [00:34:28] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:28] Reloading browsers +INFO - [00:34:28] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:29] Reloading browsers +INFO - [00:34:29] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:30] Reloading browsers +INFO - [00:34:30] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:31] Reloading browsers +INFO - [00:34:31] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:32] Reloading browsers +INFO - [00:34:32] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:32] Reloading browsers +INFO - [00:34:32] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:33] Reloading browsers +INFO - [00:34:33] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:34] Reloading browsers +INFO - [00:34:34] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:35] Reloading browsers +INFO - [00:34:35] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:35] Reloading browsers +INFO - [00:34:35] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:36] Reloading browsers +INFO - [00:34:36] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:37] Reloading browsers +INFO - [00:34:37] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:38] Reloading browsers +INFO - [00:34:38] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:38] Reloading browsers +INFO - [00:34:38] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:39] Reloading browsers +INFO - [00:34:39] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:40] Reloading browsers +INFO - [00:34:40] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:41] Reloading browsers +INFO - [00:34:41] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:41] Reloading browsers +INFO - [00:34:41] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:42] Reloading browsers +INFO - [00:34:42] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:43] Reloading browsers +INFO - [00:34:43] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:44] Reloading browsers +INFO - [00:34:44] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:45] Reloading browsers +INFO - [00:34:45] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:45] Reloading browsers +INFO - [00:34:45] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:46] Reloading browsers +INFO - [00:34:46] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:47] Reloading browsers +INFO - [00:34:47] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:48] Reloading browsers +INFO - [00:34:48] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:48] Reloading browsers +INFO - [00:34:48] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:49] Reloading browsers +INFO - [00:34:49] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:50] Reloading browsers +INFO - [00:34:50] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:51] Reloading browsers +INFO - [00:34:51] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:52] Reloading browsers +INFO - [00:34:52] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:52] Reloading browsers +INFO - [00:34:52] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:53] Reloading browsers +INFO - [00:34:53] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:54] Reloading browsers +INFO - [00:34:54] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:55] Reloading browsers +INFO - [00:34:55] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:56] Reloading browsers +INFO - [00:34:56] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:56] Reloading browsers +INFO - [00:34:56] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:57] Reloading browsers +INFO - [00:34:57] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:58] Reloading browsers +INFO - [00:34:58] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:59] Reloading browsers +INFO - [00:34:59] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:00] Reloading browsers +INFO - [00:35:00] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:00] Reloading browsers +INFO - [00:35:01] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:01] Reloading browsers +INFO - [00:35:01] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:02] Reloading browsers +INFO - [00:35:02] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:03] Reloading browsers +INFO - [00:35:03] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:04] Reloading browsers +INFO - [00:35:04] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:04] Reloading browsers +INFO - [00:35:04] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:05] Reloading browsers +INFO - [00:35:05] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:06] Reloading browsers +INFO - [00:35:06] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:07] Reloading browsers +INFO - [00:35:07] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:08] Reloading browsers +INFO - [00:35:08] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:08] Reloading browsers +INFO - [00:35:08] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:09] Reloading browsers +INFO - [00:35:09] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:10] Reloading browsers +INFO - [00:35:10] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:11] Reloading browsers +INFO - [00:35:11] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:11] Reloading browsers +INFO - [00:35:11] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:12] Reloading browsers +INFO - [00:35:12] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:13] Reloading browsers +INFO - [00:35:13] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:14] Reloading browsers +INFO - [00:35:14] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:15] Reloading browsers +INFO - [00:35:15] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:15] Reloading browsers +INFO - [00:35:15] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:16] Reloading browsers +INFO - [00:35:16] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:17] Reloading browsers +INFO - [00:35:17] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:18] Reloading browsers +INFO - [00:35:18] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:18] Reloading browsers +INFO - [00:35:18] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:19] Reloading browsers +INFO - [00:35:19] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:20] Reloading browsers +INFO - [00:35:20] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:21] Reloading browsers +INFO - [00:35:21] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:21] Reloading browsers +INFO - [00:35:21] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:22] Reloading browsers +INFO - [00:35:22] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:23] Reloading browsers +INFO - [00:35:23] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:24] Reloading browsers +INFO - [00:35:24] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:25] Reloading browsers +INFO - [00:35:25] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:25] Reloading browsers +INFO - [00:35:25] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:26] Reloading browsers +INFO - [00:35:26] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:27] Reloading browsers +INFO - [00:35:27] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:28] Reloading browsers +INFO - [00:35:28] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:28] Reloading browsers +INFO - [00:35:28] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:29] Reloading browsers +INFO - [00:35:29] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:30] Reloading browsers +INFO - [00:35:30] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:31] Reloading browsers +INFO - [00:35:31] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:32] Reloading browsers +INFO - [00:35:32] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:32] Reloading browsers +INFO - [00:35:32] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:33] Reloading browsers +INFO - [00:35:33] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:34] Reloading browsers +INFO - [00:35:34] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:35] Reloading browsers +INFO - [00:35:35] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:35] Reloading browsers +INFO - [00:35:35] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:36] Reloading browsers +INFO - [00:35:36] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:37] Reloading browsers +INFO - [00:35:37] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:38] Reloading browsers +INFO - [00:35:38] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:38] Reloading browsers +INFO - [00:35:38] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:39] Reloading browsers +INFO - [00:35:39] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:40] Reloading browsers +INFO - [00:35:40] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:41] Reloading browsers +INFO - [00:35:41] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:42] Reloading browsers +INFO - [00:35:42] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:42] Reloading browsers +INFO - [00:35:42] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:43] Reloading browsers +INFO - [00:35:43] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:44] Reloading browsers +INFO - [00:35:44] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:45] Reloading browsers +INFO - [00:35:45] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:45] Reloading browsers +INFO - [00:35:45] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:46] Reloading browsers +INFO - [00:35:46] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:47] Reloading browsers +INFO - [00:35:47] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:48] Reloading browsers +INFO - [00:35:48] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:49] Reloading browsers +INFO - [00:35:49] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:49] Reloading browsers +INFO - [00:35:49] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:50] Reloading browsers +INFO - [00:35:50] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:51] Reloading browsers +INFO - [00:35:51] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:52] Reloading browsers +INFO - [00:35:52] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:53] Reloading browsers +INFO - [00:35:53] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:53] Reloading browsers +INFO - [00:35:53] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:54] Reloading browsers +INFO - [00:35:54] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:55] Reloading browsers +INFO - [00:35:55] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:56] Reloading browsers +INFO - [00:35:56] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:57] Reloading browsers +INFO - [00:35:57] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:57] Reloading browsers +INFO - [00:35:57] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:58] Reloading browsers +INFO - [00:35:58] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:59] Reloading browsers +INFO - [00:35:59] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:00] Reloading browsers +INFO - [00:36:00] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:00] Reloading browsers +INFO - [00:36:00] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:01] Reloading browsers +INFO - [00:36:01] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:02] Reloading browsers +INFO - [00:36:02] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:03] Reloading browsers +INFO - [00:36:03] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:04] Reloading browsers +INFO - [00:36:04] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:04] Reloading browsers +INFO - [00:36:04] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:05] Reloading browsers +INFO - [00:36:05] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:06] Reloading browsers +INFO - [00:36:06] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:07] Reloading browsers +INFO - [00:36:07] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:07] Reloading browsers +INFO - [00:36:07] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:08] Reloading browsers +INFO - [00:36:08] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:09] Reloading browsers +INFO - [00:36:09] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:10] Reloading browsers +INFO - [00:36:10] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:10] Reloading browsers +INFO - [00:36:10] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:11] Reloading browsers +INFO - [00:36:11] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:12] Reloading browsers +INFO - [00:36:12] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:13] Reloading browsers +INFO - [00:36:13] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:14] Reloading browsers +INFO - [00:36:14] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:14] Reloading browsers +INFO - [00:36:14] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:15] Reloading browsers +INFO - [00:36:15] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:16] Reloading browsers +INFO - [00:36:16] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:17] Reloading browsers +INFO - [00:36:17] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:18] Reloading browsers +INFO - [00:36:18] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:18] Reloading browsers +INFO - [00:36:18] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:19] Reloading browsers +INFO - [00:36:19] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:20] Reloading browsers +INFO - [00:36:20] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:21] Reloading browsers +INFO - [00:36:21] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:22] Reloading browsers +INFO - [00:36:22] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:22] Reloading browsers +INFO - [00:36:22] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:23] Reloading browsers +INFO - [00:36:23] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:24] Reloading browsers +INFO - [00:36:24] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:25] Reloading browsers +INFO - [00:36:25] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:25] Reloading browsers +INFO - [00:36:25] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:26] Reloading browsers +INFO - [00:36:26] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:27] Reloading browsers +INFO - [00:36:27] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:28] Reloading browsers +INFO - [00:36:28] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:29] Reloading browsers +INFO - [00:36:29] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:29] Reloading browsers +INFO - [00:36:29] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:30] Reloading browsers +INFO - [00:36:30] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:31] Reloading browsers +INFO - [00:36:31] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:32] Reloading browsers +INFO - [00:36:32] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:33] Reloading browsers +INFO - [00:36:33] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:33] Reloading browsers +INFO - [00:36:33] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:34] Reloading browsers +INFO - [00:36:34] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:35] Reloading browsers +INFO - [00:36:35] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:36] Reloading browsers +INFO - [00:36:36] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:37] Reloading browsers +INFO - [00:36:37] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:38] Reloading browsers +INFO - [00:36:38] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:39] Reloading browsers +INFO - [00:36:39] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:39] Reloading browsers +INFO - [00:36:39] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:40] Reloading browsers +INFO - [00:36:40] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:41] Reloading browsers +INFO - [00:36:41] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:42] Reloading browsers +INFO - [00:36:42] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:43] Reloading browsers +INFO - [00:36:43] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:44] Reloading browsers +INFO - [00:36:44] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:44] Reloading browsers +INFO - [00:36:44] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:45] Reloading browsers +INFO - [00:36:45] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:46] Reloading browsers +INFO - [00:36:46] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:47] Reloading browsers +INFO - [00:36:47] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:48] Reloading browsers +INFO - [00:36:48] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:48] Reloading browsers +INFO - [00:36:48] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:49] Reloading browsers +INFO - [00:36:49] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:50] Reloading browsers +INFO - [00:36:50] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:51] Reloading browsers +INFO - [00:36:51] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:52] Reloading browsers +INFO - [00:36:52] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:52] Reloading browsers +INFO - [00:36:52] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:53] Reloading browsers +INFO - [00:36:53] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:54] Reloading browsers +INFO - [00:36:54] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:55] Reloading browsers +INFO - [00:36:55] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:56] Reloading browsers +INFO - [00:36:56] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:56] Reloading browsers +INFO - [00:36:56] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:57] Reloading browsers +INFO - [00:36:57] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:58] Reloading browsers +INFO - [00:36:58] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:59] Reloading browsers +INFO - [00:36:59] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:00] Reloading browsers +INFO - [00:37:00] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:01] Reloading browsers +INFO - [00:37:01] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:02] Reloading browsers +INFO - [00:37:02] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:02] Reloading browsers +INFO - [00:37:02] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:03] Reloading browsers +INFO - [00:37:03] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:04] Reloading browsers +INFO - [00:37:04] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:05] Reloading browsers +INFO - [00:37:05] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:05] Reloading browsers +INFO - [00:37:05] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:06] Reloading browsers +INFO - [00:37:06] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:07] Reloading browsers +INFO - [00:37:07] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:08] Reloading browsers +INFO - [00:37:08] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:09] Reloading browsers +INFO - [00:37:09] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:09] Reloading browsers +INFO - [00:37:09] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:10] Reloading browsers +INFO - [00:37:10] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:11] Reloading browsers +INFO - [00:37:11] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:12] Reloading browsers +INFO - [00:37:12] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:12] Reloading browsers +INFO - [00:37:12] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:13] Reloading browsers +INFO - [00:37:13] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:14] Reloading browsers +INFO - [00:37:14] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:15] Reloading browsers +INFO - [00:37:15] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:16] Reloading browsers +INFO - [00:37:16] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:17] Reloading browsers +INFO - [00:37:17] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:17] Reloading browsers +INFO - [00:37:17] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:18] Reloading browsers +INFO - [00:37:18] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:19] Reloading browsers +INFO - [00:37:19] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:20] Reloading browsers +INFO - [00:37:20] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:20] Reloading browsers +INFO - [00:37:20] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:21] Reloading browsers +INFO - [00:37:21] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:22] Reloading browsers +INFO - [00:37:22] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:23] Reloading browsers +INFO - [00:37:23] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:24] Reloading browsers +INFO - [00:37:24] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:25] Reloading browsers +INFO - [00:37:25] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:25] Reloading browsers +INFO - [00:37:25] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:26] Reloading browsers +INFO - [00:37:26] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:27] Reloading browsers +INFO - [00:37:27] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:28] Reloading browsers +INFO - [00:37:28] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:29] Reloading browsers +INFO - [00:37:29] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:30] Reloading browsers +INFO - [00:37:30] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:30] Reloading browsers +INFO - [00:37:30] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:31] Reloading browsers +INFO - [00:37:31] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:32] Reloading browsers +INFO - [00:37:32] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:33] Reloading browsers +INFO - [00:37:33] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Documentation built in 1.02 seconds +INFO - [00:37:34] Reloading browsers +INFO - [00:37:34] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Documentation built in 0.96 seconds +INFO - [00:37:35] Reloading browsers +INFO - [00:37:35] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:36] Reloading browsers +INFO - [00:37:36] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:37] Reloading browsers +INFO - [00:37:37] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:38] Reloading browsers +INFO - [00:37:38] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:39] Reloading browsers +INFO - [00:37:39] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:40] Reloading browsers +INFO - [00:37:40] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:41] Reloading browsers +INFO - [00:37:41] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:41] Reloading browsers +INFO - [00:37:41] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:42] Reloading browsers +INFO - [00:37:42] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:43] Reloading browsers +INFO - [00:37:43] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:44] Reloading browsers +INFO - [00:37:44] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:45] Reloading browsers +INFO - [00:37:45] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:45] Reloading browsers +INFO - [00:37:45] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:46] Reloading browsers +INFO - [00:37:46] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:47] Reloading browsers +INFO - [00:37:47] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:48] Reloading browsers +INFO - [00:37:48] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Documentation built in 0.91 seconds +INFO - [00:37:49] Reloading browsers +INFO - [00:37:49] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:50] Reloading browsers +INFO - [00:37:50] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:51] Reloading browsers +INFO - [00:37:51] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:52] Reloading browsers +INFO - [00:37:52] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:53] Reloading browsers +INFO - [00:37:53] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:54] Reloading browsers +INFO - [00:37:54] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:55] Reloading browsers +INFO - [00:37:55] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:56] Reloading browsers +INFO - [00:37:56] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:57] Reloading browsers +INFO - [00:37:57] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:58] Reloading browsers +INFO - [00:37:58] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:59] Reloading browsers +INFO - [00:37:59] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:59] Reloading browsers +INFO - [00:37:59] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:00] Reloading browsers +INFO - [00:38:00] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:01] Reloading browsers +INFO - [00:38:01] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:02] Reloading browsers +INFO - [00:38:02] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:03] Reloading browsers +INFO - [00:38:03] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:04] Reloading browsers +INFO - [00:38:04] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:05] Reloading browsers +INFO - [00:38:05] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:06] Reloading browsers +INFO - [00:38:06] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:07] Reloading browsers +INFO - [00:38:07] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:08] Reloading browsers +INFO - [00:38:08] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:08] Reloading browsers +INFO - [00:38:08] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:09] Reloading browsers +INFO - [00:38:09] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:10] Reloading browsers +INFO - [00:38:10] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:11] Reloading browsers +INFO - [00:38:11] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:12] Reloading browsers +INFO - [00:38:12] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:13] Reloading browsers +INFO - [00:38:13] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:14] Reloading browsers +INFO - [00:38:14] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:15] Reloading browsers +INFO - [00:38:15] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:15] Reloading browsers +INFO - [00:38:15] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:16] Reloading browsers +INFO - [00:38:16] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:17] Reloading browsers +INFO - [00:38:17] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:18] Reloading browsers +INFO - [00:38:18] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:19] Reloading browsers +INFO - [00:38:19] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:20] Reloading browsers +INFO - [00:38:20] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:21] Reloading browsers +INFO - [00:38:21] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:22] Reloading browsers +INFO - [00:38:22] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:22] Reloading browsers +INFO - [00:38:22] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:23] Reloading browsers +INFO - [00:38:23] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:24] Reloading browsers +INFO - [00:38:24] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:25] Reloading browsers +INFO - [00:38:25] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:26] Reloading browsers +INFO - [00:38:26] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:26] Reloading browsers +INFO - [00:38:26] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:27] Reloading browsers +INFO - [00:38:27] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:28] Reloading browsers +INFO - [00:38:28] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:29] Reloading browsers +INFO - [00:38:29] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:30] Reloading browsers +INFO - [00:38:30] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:30] Reloading browsers +INFO - [00:38:30] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:31] Reloading browsers +INFO - [00:38:31] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:32] Reloading browsers +INFO - [00:38:32] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:33] Reloading browsers +INFO - [00:38:33] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:33] Reloading browsers +INFO - [00:38:33] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:34] Reloading browsers +INFO - [00:38:34] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:35] Reloading browsers +INFO - [00:38:35] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:36] Reloading browsers +INFO - [00:38:36] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:37] Reloading browsers +INFO - [00:38:37] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:38] Reloading browsers +INFO - [00:38:38] Detected file changes +INFO - Building documentation... +INFO - [00:38:38] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:39] Reloading browsers +INFO - [00:38:39] Detected file changes +INFO - Building documentation... +INFO - [00:38:39] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:39] Reloading browsers +INFO - [00:38:39] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:40] Reloading browsers +INFO - [00:38:40] Detected file changes +INFO - [00:38:40] Browser connected: http://localhost:54933/docs/ +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:41] Reloading browsers +INFO - [00:38:41] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:42] Reloading browsers +INFO - [00:38:42] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:43] Reloading browsers +INFO - [00:38:43] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:43] Reloading browsers +INFO - [00:38:43] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:44] Reloading browsers +INFO - [00:38:44] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:45] Reloading browsers +INFO - [00:38:45] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:46] Reloading browsers +INFO - [00:38:46] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:47] Reloading browsers +INFO - [00:38:47] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:47] Reloading browsers +INFO - [00:38:47] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:48] Reloading browsers +INFO - [00:38:48] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:49] Reloading browsers +INFO - [00:38:49] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:50] Reloading browsers +INFO - [00:38:50] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:51] Reloading browsers +INFO - [00:38:51] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:51] Reloading browsers +INFO - [00:38:51] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:52] Reloading browsers +INFO - [00:38:52] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:53] Reloading browsers +INFO - [00:38:53] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:54] Reloading browsers +INFO - [00:38:54] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:55] Reloading browsers +INFO - [00:38:55] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:55] Reloading browsers +INFO - [00:38:55] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:56] Reloading browsers +INFO - [00:38:56] Detected file changes +INFO - Building documentation... +INFO - [00:38:56] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:57] Reloading browsers +INFO - [00:38:57] Detected file changes +INFO - Building documentation... +INFO - [00:38:57] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:58] Reloading browsers +INFO - [00:38:58] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +INFO - [00:38:58] Browser connected: http://localhost:54933/docs/ +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:59] Reloading browsers +INFO - [00:38:59] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:59] Reloading browsers +INFO - [00:38:59] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:00] Reloading browsers +INFO - [00:39:00] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:01] Reloading browsers +INFO - [00:39:01] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:02] Reloading browsers +INFO - [00:39:02] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:03] Reloading browsers +INFO - [00:39:03] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:03] Reloading browsers +INFO - [00:39:03] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:04] Reloading browsers +INFO - [00:39:04] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:05] Reloading browsers +INFO - [00:39:05] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:06] Reloading browsers +INFO - [00:39:06] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:06] Reloading browsers +INFO - [00:39:06] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:07] Reloading browsers +INFO - [00:39:07] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:08] Reloading browsers +INFO - [00:39:08] Detected file changes +INFO - [00:39:08] Browser connected: http://localhost:54933/docs/ +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:09] Reloading browsers +INFO - [00:39:09] Detected file changes +INFO - [00:39:09] Browser connected: http://localhost:54933/docs/ +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:10] Reloading browsers +INFO - [00:39:10] Detected file changes +INFO - [00:39:10] Browser connected: http://localhost:54933/docs/ +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:10] Reloading browsers +INFO - [00:39:10] Detected file changes +INFO - Building documentation... +INFO - [00:39:11] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:11] Reloading browsers +INFO - [00:39:11] Detected file changes +INFO - [00:39:11] Browser connected: http://localhost:54933/docs/ +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:12] Reloading browsers +INFO - [00:39:12] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:39:12] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:13] Reloading browsers +INFO - [00:39:13] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:39:13] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:14] Reloading browsers +INFO - [00:39:14] Detected file changes +INFO - [00:39:14] Browser connected: http://localhost:54933/docs/ +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:15] Reloading browsers +INFO - [00:39:15] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:15] Reloading browsers +INFO - [00:39:15] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:16] Reloading browsers +INFO - [00:39:16] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:17] Reloading browsers +INFO - [00:39:17] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:18] Reloading browsers +INFO - [00:39:18] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:19] Reloading browsers +INFO - [00:39:19] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:19] Reloading browsers +INFO - [00:39:19] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Documentation built in 1.08 seconds +INFO - [00:39:21] Reloading browsers +INFO - [00:39:21] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Documentation built in 0.98 seconds +INFO - [00:39:22] Reloading browsers +INFO - [00:39:22] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:23] Reloading browsers +INFO - [00:39:23] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:24] Reloading browsers +INFO - [00:39:24] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:25] Reloading browsers +INFO - [00:39:25] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:25] Reloading browsers +INFO - [00:39:25] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:26] Reloading browsers +INFO - [00:39:26] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:27] Reloading browsers +INFO - [00:39:27] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:28] Reloading browsers +INFO - [00:39:28] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:29] Reloading browsers +INFO - [00:39:29] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:30] Reloading browsers +INFO - [00:39:30] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:31] Reloading browsers +INFO - [00:39:31] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:31] Reloading browsers +INFO - [00:39:31] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:32] Reloading browsers +INFO - [00:39:32] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:33] Reloading browsers +INFO - [00:39:33] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:34] Reloading browsers +INFO - [00:39:34] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:35] Reloading browsers +INFO - [00:39:35] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:35] Reloading browsers +INFO - [00:39:35] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:36] Reloading browsers +INFO - [00:39:36] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:37] Reloading browsers +INFO - [00:39:37] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:38] Reloading browsers +INFO - [00:39:38] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:39] Reloading browsers +INFO - [00:39:39] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:39] Reloading browsers +INFO - [00:39:39] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:40] Reloading browsers +INFO - [00:39:40] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:41] Reloading browsers +INFO - [00:39:41] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:42] Reloading browsers +INFO - [00:39:42] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:43] Reloading browsers +INFO - [00:39:43] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:43] Reloading browsers +INFO - [00:39:43] Detected file changes +INFO - Building documentation... +INFO - [00:39:44] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:44] Reloading browsers +INFO - [00:39:44] Detected file changes +INFO - Building documentation... +INFO - [00:39:44] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:45] Reloading browsers +INFO - [00:39:45] Detected file changes +INFO - [00:39:45] Browser connected: http://localhost:54933/docs/ +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:46] Reloading browsers +INFO - [00:39:46] Detected file changes +INFO - Building documentation... +INFO - [00:39:46] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:47] Reloading browsers +INFO - [00:39:47] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:39:47] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:48] Reloading browsers +INFO - [00:39:48] Detected file changes +INFO - [00:39:48] Browser connected: http://localhost:54933/docs/ +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:48] Reloading browsers +INFO - [00:39:48] Detected file changes +INFO - Building documentation... +INFO - [00:39:49] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:49] Reloading browsers +INFO - [00:39:49] Detected file changes +INFO - [00:39:49] Browser connected: http://localhost:54933/docs/ +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:50] Reloading browsers +INFO - [00:39:50] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:39:51] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:51] Reloading browsers +INFO - [00:39:51] Detected file changes +INFO - [00:39:51] Browser connected: http://localhost:54933/docs/ +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:52] Reloading browsers +INFO - [00:39:52] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:39:52] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:53] Reloading browsers +INFO - [00:39:53] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:39:53] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:54] Reloading browsers +INFO - [00:39:54] Detected file changes +INFO - [00:39:54] Browser connected: http://localhost:54933/docs/ +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:54] Reloading browsers +INFO - [00:39:54] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:39:55] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:55] Reloading browsers +INFO - [00:39:55] Detected file changes +INFO - Building documentation... +INFO - [00:39:55] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:56] Reloading browsers +INFO - [00:39:56] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:39:56] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:57] Reloading browsers +INFO - [00:39:57] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:39:57] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:58] Reloading browsers +INFO - [00:39:58] Detected file changes +INFO - Building documentation... +INFO - [00:39:58] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:59] Reloading browsers +INFO - [00:39:59] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:39:59] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:00] Reloading browsers +INFO - [00:40:00] Detected file changes +INFO - [00:40:00] Browser connected: http://localhost:54933/docs/ +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:01] Reloading browsers +INFO - [00:40:01] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:40:01] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:01] Reloading browsers +INFO - [00:40:01] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:40:02] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:02] Reloading browsers +INFO - [00:40:02] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:40:03] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:03] Reloading browsers +INFO - [00:40:03] Detected file changes +INFO - [00:40:03] Browser connected: http://localhost:54933/docs/ +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:04] Reloading browsers +INFO - [00:40:04] Detected file changes +INFO - Building documentation... +INFO - [00:40:04] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:05] Reloading browsers +INFO - [00:40:05] Detected file changes +INFO - [00:40:05] Browser connected: http://localhost:54933/docs/ +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:06] Reloading browsers +INFO - [00:40:06] Detected file changes +INFO - Building documentation... +INFO - [00:40:06] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:07] Reloading browsers +INFO - [00:40:07] Detected file changes +INFO - [00:40:07] Browser connected: http://localhost:54933/docs/ +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:08] Reloading browsers +INFO - [00:40:08] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:40:08] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:08] Reloading browsers +INFO - [00:40:08] Detected file changes +INFO - Building documentation... +INFO - [00:40:09] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:09] Reloading browsers +INFO - [00:40:09] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:40:10] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:10] Reloading browsers +INFO - [00:40:10] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:40:11] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:11] Reloading browsers +INFO - [00:40:11] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:40:11] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:12] Reloading browsers +INFO - [00:40:12] Detected file changes +INFO - Building documentation... +INFO - [00:40:12] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:13] Reloading browsers +INFO - [00:40:13] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:40:13] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:14] Reloading browsers +INFO - [00:40:14] Detected file changes +INFO - Building documentation... +INFO - [00:40:14] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:15] Reloading browsers +INFO - [00:40:15] Detected file changes +INFO - Building documentation... +INFO - [00:40:15] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:16] Reloading browsers +INFO - [00:40:16] Detected file changes +INFO - Building documentation... +INFO - [00:40:16] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:16] Reloading browsers +INFO - [00:40:16] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:40:17] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:17] Reloading browsers +INFO - [00:40:17] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:40:18] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:18] Reloading browsers +INFO - [00:40:18] Detected file changes +INFO - [00:40:18] Browser connected: http://localhost:54933/docs/ +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:19] Reloading browsers +INFO - [00:40:19] Detected file changes +INFO - Building documentation... +INFO - [00:40:19] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:20] Reloading browsers +INFO - [00:40:20] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:40:20] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:21] Reloading browsers +INFO - [00:40:21] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:22] Reloading browsers +INFO - [00:40:22] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:23] Reloading browsers +INFO - [00:40:23] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:23] Reloading browsers +INFO - [00:40:23] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:24] Reloading browsers +INFO - [00:40:24] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:25] Reloading browsers +INFO - [00:40:25] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:26] Reloading browsers +INFO - [00:40:26] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:27] Reloading browsers +INFO - [00:40:27] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:27] Reloading browsers +INFO - [00:40:27] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:28] Reloading browsers +INFO - [00:40:28] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:29] Reloading browsers +INFO - [00:40:29] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:30] Reloading browsers +INFO - [00:40:30] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:31] Reloading browsers +INFO - [00:40:31] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:32] Reloading browsers +INFO - [00:40:32] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:32] Reloading browsers +INFO - [00:40:32] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:33] Reloading browsers +INFO - [00:40:33] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:34] Reloading browsers +INFO - [00:40:34] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:35] Reloading browsers +INFO - [00:40:35] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:36] Reloading browsers +INFO - [00:40:36] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:37] Reloading browsers +INFO - [00:40:37] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:37] Reloading browsers +INFO - [00:40:37] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:38] Reloading browsers +INFO - [00:40:38] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:39] Reloading browsers +INFO - [00:40:39] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:40] Reloading browsers +INFO - [00:40:40] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:41] Reloading browsers +INFO - [00:40:41] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:42] Reloading browsers +INFO - [00:40:42] Detected file changes +INFO - [00:40:42] Browser connected: http://localhost:54933/docs/ +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:42] Reloading browsers +INFO - [00:40:42] Detected file changes +INFO - Building documentation... +INFO - [00:40:43] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:43] Reloading browsers +INFO - [00:40:43] Detected file changes +INFO - [00:40:43] Browser connected: http://localhost:54933/docs/ +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:44] Reloading browsers +INFO - [00:40:44] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +INFO - [00:40:44] Browser connected: http://localhost:54933/docs/ +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:45] Reloading browsers +INFO - [00:40:45] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:40:45] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:46] Reloading browsers +INFO - [00:40:46] Detected file changes +INFO - Building documentation... +INFO - [00:40:46] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:47] Reloading browsers +INFO - [00:40:47] Detected file changes +INFO - Building documentation... +INFO - [00:40:47] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:48] Reloading browsers +INFO - [00:40:48] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:40:48] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:48] Reloading browsers +INFO - [00:40:48] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:40:49] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:49] Reloading browsers +INFO - [00:40:49] Detected file changes +INFO - Building documentation... +INFO - [00:40:49] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Documentation built in 0.95 seconds +INFO - [00:40:50] Reloading browsers +INFO - [00:40:50] Detected file changes +INFO - Building documentation... +INFO - [00:40:51] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Documentation built in 1.03 seconds +INFO - [00:40:52] Reloading browsers +INFO - [00:40:52] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:40:52] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:53] Reloading browsers +INFO - [00:40:53] Detected file changes +INFO - Building documentation... +INFO - [00:40:53] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:54] Reloading browsers +INFO - [00:40:54] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:40:54] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:55] Reloading browsers +INFO - [00:40:55] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - [00:40:55] Browser connected: http://localhost:54933/docs/ +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:56] Reloading browsers +INFO - [00:40:56] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:40:56] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:57] Reloading browsers +INFO - [00:40:57] Detected file changes +INFO - Building documentation... +INFO - [00:40:57] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:58] Reloading browsers +INFO - [00:40:58] Detected file changes +INFO - Building documentation... +INFO - [00:40:58] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:58] Reloading browsers +INFO - [00:40:58] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:40:59] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:59] Reloading browsers +INFO - [00:40:59] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:41:00] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:00] Reloading browsers +INFO - [00:41:00] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +INFO - [00:41:01] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:01] Reloading browsers +INFO - [00:41:01] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:41:02] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:02] Reloading browsers +INFO - [00:41:02] Detected file changes +INFO - Building documentation... +INFO - [00:41:02] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:03] Reloading browsers +INFO - [00:41:03] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:41:03] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:04] Reloading browsers +INFO - [00:41:04] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:41:04] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:05] Reloading browsers +INFO - [00:41:05] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:41:05] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:06] Reloading browsers +INFO - [00:41:06] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:41:06] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Documentation built in 0.86 seconds +INFO - [00:41:07] Reloading browsers +INFO - [00:41:07] Detected file changes +INFO - Building documentation... +INFO - [00:41:07] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:08] Reloading browsers +INFO - [00:41:08] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +INFO - [00:41:08] Browser connected: http://localhost:54933/docs/ +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:09] Reloading browsers +INFO - [00:41:09] Detected file changes +INFO - Building documentation... +INFO - [00:41:09] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:09] Reloading browsers +INFO - [00:41:09] Detected file changes +INFO - Building documentation... +INFO - [00:41:10] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:10] Reloading browsers +INFO - [00:41:10] Detected file changes +INFO - Building documentation... +INFO - [00:41:10] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:11] Reloading browsers +INFO - [00:41:11] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:41:11] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:12] Reloading browsers +INFO - [00:41:12] Detected file changes +INFO - Building documentation... +INFO - [00:41:12] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:13] Reloading browsers +INFO - [00:41:13] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:41:13] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:14] Reloading browsers +INFO - [00:41:14] Detected file changes +INFO - [00:41:14] Browser connected: http://localhost:54933/docs/ +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:15] Reloading browsers +INFO - [00:41:15] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:41:15] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:15] Reloading browsers +INFO - [00:41:15] Detected file changes +INFO - Building documentation... +INFO - [00:41:16] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Documentation built in 2.46 seconds +INFO - [00:41:18] Reloading browsers +INFO - [00:41:18] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:41:18] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:19] Reloading browsers +INFO - [00:41:19] Detected file changes +INFO - Building documentation... +INFO - [00:41:19] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:20] Reloading browsers +INFO - [00:41:20] Detected file changes +INFO - [00:41:20] Browser connected: http://localhost:54933/docs/ +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:21] Reloading browsers +INFO - [00:41:21] Detected file changes +INFO - Building documentation... +INFO - [00:41:21] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:22] Reloading browsers +INFO - [00:41:22] Detected file changes +INFO - Building documentation... +INFO - [00:41:22] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:23] Reloading browsers +INFO - [00:41:23] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:41:23] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:24] Reloading browsers +INFO - [00:41:24] Detected file changes +INFO - [00:41:24] Browser connected: http://localhost:54933/docs/ +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:24] Reloading browsers +INFO - [00:41:24] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:41:25] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:25] Reloading browsers +INFO - [00:41:25] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:41:26] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:26] Reloading browsers +INFO - [00:41:26] Detected file changes +INFO - [00:41:26] Browser connected: http://localhost:54933/docs/ +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:27] Reloading browsers +INFO - [00:41:27] Detected file changes +INFO - Building documentation... +INFO - [00:41:27] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:28] Reloading browsers +INFO - [00:41:28] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:41:28] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:29] Reloading browsers +INFO - [00:41:29] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:41:29] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:30] Reloading browsers +INFO - [00:41:30] Detected file changes +INFO - [00:41:30] Browser connected: http://localhost:54933/docs/ +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:30] Reloading browsers +INFO - [00:41:30] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:41:31] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:31] Reloading browsers +INFO - [00:41:31] Detected file changes +INFO - Building documentation... +INFO - [00:41:31] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:32] Reloading browsers +INFO - [00:41:32] Detected file changes +INFO - [00:41:32] Browser connected: http://localhost:54933/docs/ +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:33] Reloading browsers +INFO - [00:41:33] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:41:33] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:34] Reloading browsers +INFO - [00:41:34] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:41:34] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:35] Reloading browsers +INFO - [00:41:35] Detected file changes +INFO - [00:41:35] Browser connected: http://localhost:54933/docs/ +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:36] Reloading browsers +INFO - [00:41:36] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:37] Reloading browsers +INFO - [00:41:37] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:37] Reloading browsers +INFO - [00:41:37] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:38] Reloading browsers +INFO - [00:41:38] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:39] Reloading browsers +INFO - [00:41:39] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:40] Reloading browsers +INFO - [00:41:40] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:40] Reloading browsers +INFO - [00:41:40] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:41] Reloading browsers +INFO - [00:41:41] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:42] Reloading browsers +INFO - [00:41:42] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:43] Reloading browsers +INFO - [00:41:43] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:44] Reloading browsers +INFO - [00:41:44] Detected file changes +INFO - [00:41:44] Browser connected: http://localhost:54933/docs/ +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:45] Reloading browsers +INFO - [00:41:45] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:45] Reloading browsers +INFO - [00:41:45] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:46] Reloading browsers +INFO - [00:41:46] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:47] Reloading browsers +INFO - [00:41:47] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:48] Reloading browsers +INFO - [00:41:48] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:49] Reloading browsers +INFO - [00:41:49] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:50] Reloading browsers +INFO - [00:41:50] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:50] Reloading browsers +INFO - [00:41:50] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:51] Reloading browsers +INFO - [00:41:51] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:52] Reloading browsers +INFO - [00:41:52] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:53] Reloading browsers +INFO - [00:41:53] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:54] Reloading browsers +INFO - [00:41:54] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:54] Reloading browsers +INFO - [00:41:54] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:55] Reloading browsers +INFO - [00:41:55] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:56] Reloading browsers +INFO - [00:41:56] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:57] Reloading browsers +INFO - [00:41:57] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:58] Reloading browsers +INFO - [00:41:58] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:58] Reloading browsers +INFO - [00:41:58] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:59] Reloading browsers +INFO - [00:41:59] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:00] Reloading browsers +INFO - [00:42:00] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:01] Reloading browsers +INFO - [00:42:01] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:02] Reloading browsers +INFO - [00:42:02] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:03] Reloading browsers +INFO - [00:42:03] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:03] Reloading browsers +INFO - [00:42:03] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:04] Reloading browsers +INFO - [00:42:04] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:05] Reloading browsers +INFO - [00:42:05] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:06] Reloading browsers +INFO - [00:42:06] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:06] Reloading browsers +INFO - [00:42:06] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:07] Reloading browsers +INFO - [00:42:07] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:08] Reloading browsers +INFO - [00:42:08] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:09] Reloading browsers +INFO - [00:42:09] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:10] Reloading browsers +INFO - [00:42:10] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:11] Reloading browsers +INFO - [00:42:11] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:11] Reloading browsers +INFO - [00:42:11] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:12] Reloading browsers +INFO - [00:42:12] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:13] Reloading browsers +INFO - [00:42:13] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:14] Reloading browsers +INFO - [00:42:14] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:15] Reloading browsers +INFO - [00:42:15] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:15] Reloading browsers +INFO - [00:42:15] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:16] Reloading browsers +INFO - [00:42:16] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:17] Reloading browsers +INFO - [00:42:17] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:18] Reloading browsers +INFO - [00:42:18] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:19] Reloading browsers +INFO - [00:42:19] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:20] Reloading browsers +INFO - [00:42:20] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:20] Reloading browsers +INFO - [00:42:20] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:21] Reloading browsers +INFO - [00:42:21] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:22] Reloading browsers +INFO - [00:42:22] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:23] Reloading browsers +INFO - [00:42:23] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:24] Reloading browsers +INFO - [00:42:24] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:25] Reloading browsers +INFO - [00:42:25] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:25] Reloading browsers +INFO - [00:42:25] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:26] Reloading browsers +INFO - [00:42:26] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:27] Reloading browsers +INFO - [00:42:27] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:28] Reloading browsers +INFO - [00:42:28] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:29] Reloading browsers +INFO - [00:42:29] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:29] Reloading browsers +INFO - [00:42:29] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:30] Reloading browsers +INFO - [00:42:30] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:31] Reloading browsers +INFO - [00:42:31] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:32] Reloading browsers +INFO - [00:42:32] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:33] Reloading browsers +INFO - [00:42:33] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:33] Reloading browsers +INFO - [00:42:33] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:34] Reloading browsers +INFO - [00:42:34] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:35] Reloading browsers +INFO - [00:42:35] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:36] Reloading browsers +INFO - [00:42:36] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:37] Reloading browsers +INFO - [00:42:37] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:38] Reloading browsers +INFO - [00:42:38] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:38] Reloading browsers +INFO - [00:42:38] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:39] Reloading browsers +INFO - [00:42:39] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:40] Reloading browsers +INFO - [00:42:40] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:41] Reloading browsers +INFO - [00:42:41] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:42] Reloading browsers +INFO - [00:42:42] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:43] Reloading browsers +INFO - [00:42:43] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:43] Reloading browsers +INFO - [00:42:43] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:44] Reloading browsers +INFO - [00:42:44] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:45] Reloading browsers +INFO - [00:42:45] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:46] Reloading browsers +INFO - [00:42:46] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:47] Reloading browsers +INFO - [00:42:47] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:48] Reloading browsers +INFO - [00:42:48] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:48] Reloading browsers +INFO - [00:42:48] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:49] Reloading browsers +INFO - [00:42:49] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:50] Reloading browsers +INFO - [00:42:50] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:51] Reloading browsers +INFO - [00:42:51] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:52] Reloading browsers +INFO - [00:42:52] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:53] Reloading browsers +INFO - [00:42:53] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:54] Reloading browsers +INFO - [00:42:54] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:54] Reloading browsers +INFO - [00:42:54] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:55] Reloading browsers +INFO - [00:42:55] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:56] Reloading browsers +INFO - [00:42:56] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:57] Reloading browsers +INFO - [00:42:57] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:58] Reloading browsers +INFO - [00:42:58] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:59] Reloading browsers +INFO - [00:42:59] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:59] Reloading browsers +INFO - [00:42:59] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:00] Reloading browsers +INFO - [00:43:00] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:01] Reloading browsers +INFO - [00:43:01] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:02] Reloading browsers +INFO - [00:43:02] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:03] Reloading browsers +INFO - [00:43:03] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:04] Reloading browsers +INFO - [00:43:04] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:04] Reloading browsers +INFO - [00:43:04] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:05] Reloading browsers +INFO - [00:43:05] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:06] Reloading browsers +INFO - [00:43:06] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:07] Reloading browsers +INFO - [00:43:07] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:08] Reloading browsers +INFO - [00:43:08] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:09] Reloading browsers +INFO - [00:43:09] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:10] Reloading browsers +INFO - [00:43:10] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:10] Reloading browsers +INFO - [00:43:10] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:11] Reloading browsers +INFO - [00:43:11] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:12] Reloading browsers +INFO - [00:43:12] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:13] Reloading browsers +INFO - [00:43:13] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:14] Reloading browsers +INFO - [00:43:14] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:15] Reloading browsers +INFO - [00:43:15] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:15] Reloading browsers +INFO - [00:43:15] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:16] Reloading browsers +INFO - [00:43:16] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:17] Reloading browsers +INFO - [00:43:17] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:18] Reloading browsers +INFO - [00:43:18] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:19] Reloading browsers +INFO - [00:43:19] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:20] Reloading browsers +INFO - [00:43:20] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:21] Reloading browsers +INFO - [00:43:21] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:22] Reloading browsers +INFO - [00:43:22] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:23] Reloading browsers +INFO - [00:43:23] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:23] Reloading browsers +INFO - [00:43:23] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:24] Reloading browsers +INFO - [00:43:24] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:25] Reloading browsers +INFO - [00:43:25] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:26] Reloading browsers +INFO - [00:43:26] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:27] Reloading browsers +INFO - [00:43:27] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:28] Reloading browsers +INFO - [00:43:28] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:28] Reloading browsers +INFO - [00:43:28] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:29] Reloading browsers +INFO - [00:43:29] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:30] Reloading browsers +INFO - [00:43:30] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:31] Reloading browsers +INFO - [00:43:31] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:32] Reloading browsers +INFO - [00:43:32] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:33] Reloading browsers +INFO - [00:43:33] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:33] Reloading browsers +INFO - [00:43:33] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:34] Reloading browsers +INFO - [00:43:34] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:35] Reloading browsers +INFO - [00:43:35] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:36] Reloading browsers +INFO - [00:43:36] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:37] Reloading browsers +INFO - [00:43:37] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:38] Reloading browsers +INFO - [00:43:38] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:38] Reloading browsers +INFO - [00:43:38] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Documentation built in 0.87 seconds +INFO - [00:43:39] Reloading browsers +INFO - [00:43:39] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:40] Reloading browsers +INFO - [00:43:40] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:41] Reloading browsers +INFO - [00:43:41] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:42] Reloading browsers +INFO - [00:43:42] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:43] Reloading browsers +INFO - [00:43:43] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:44] Reloading browsers +INFO - [00:43:44] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:45] Reloading browsers +INFO - [00:43:45] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:46] Reloading browsers +INFO - [00:43:46] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:46] Reloading browsers +INFO - [00:43:46] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:47] Reloading browsers +INFO - [00:43:47] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:48] Reloading browsers +INFO - [00:43:48] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:49] Reloading browsers +INFO - [00:43:49] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:50] Reloading browsers +INFO - [00:43:50] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:50] Reloading browsers +INFO - [00:43:50] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:51] Reloading browsers +INFO - [00:43:51] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:52] Reloading browsers +INFO - [00:43:52] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:53] Reloading browsers +INFO - [00:43:53] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:54] Reloading browsers +INFO - [00:43:54] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:54] Reloading browsers +INFO - [00:43:54] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:55] Reloading browsers +INFO - [00:43:55] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:56] Reloading browsers +INFO - [00:43:56] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:57] Reloading browsers +INFO - [00:43:57] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:58] Reloading browsers +INFO - [00:43:58] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:58] Reloading browsers +INFO - [00:43:58] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:59] Reloading browsers +INFO - [00:43:59] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:00] Reloading browsers +INFO - [00:44:00] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:01] Reloading browsers +INFO - [00:44:01] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:02] Reloading browsers +INFO - [00:44:02] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:02] Reloading browsers +INFO - [00:44:02] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:03] Reloading browsers +INFO - [00:44:03] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:04] Reloading browsers +INFO - [00:44:04] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:05] Reloading browsers +INFO - [00:44:05] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:06] Reloading browsers +INFO - [00:44:06] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:07] Reloading browsers +INFO - [00:44:07] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:08] Reloading browsers +INFO - [00:44:08] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:08] Reloading browsers +INFO - [00:44:08] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:09] Reloading browsers +INFO - [00:44:09] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:10] Reloading browsers +INFO - [00:44:10] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:11] Reloading browsers +INFO - [00:44:11] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:12] Reloading browsers +INFO - [00:44:12] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:12] Reloading browsers +INFO - [00:44:12] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:13] Reloading browsers +INFO - [00:44:13] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:14] Reloading browsers +INFO - [00:44:14] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:15] Reloading browsers +INFO - [00:44:15] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:16] Reloading browsers +INFO - [00:44:16] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:17] Reloading browsers +INFO - [00:44:17] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:17] Reloading browsers +INFO - [00:44:17] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:18] Reloading browsers +INFO - [00:44:18] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:19] Reloading browsers +INFO - [00:44:19] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:20] Reloading browsers +INFO - [00:44:20] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:21] Reloading browsers +INFO - [00:44:21] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:22] Reloading browsers +INFO - [00:44:22] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:23] Reloading browsers +INFO - [00:44:23] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:23] Reloading browsers +INFO - [00:44:23] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:24] Reloading browsers +INFO - [00:44:24] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:25] Reloading browsers +INFO - [00:44:25] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:26] Reloading browsers +INFO - [00:44:26] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:27] Reloading browsers +INFO - [00:44:27] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:27] Reloading browsers +INFO - [00:44:27] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:28] Reloading browsers +INFO - [00:44:28] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:29] Reloading browsers +INFO - [00:44:29] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:30] Reloading browsers +INFO - [00:44:30] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:31] Reloading browsers +INFO - [00:44:31] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:32] Reloading browsers +INFO - [00:44:32] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:33] Reloading browsers +INFO - [00:44:33] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:33] Reloading browsers +INFO - [00:44:33] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:34] Reloading browsers +INFO - [00:44:34] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:35] Reloading browsers +INFO - [00:44:35] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:36] Reloading browsers +INFO - [00:44:36] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Documentation built in 0.93 seconds +INFO - [00:44:37] Reloading browsers +INFO - [00:44:37] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:38] Reloading browsers +INFO - [00:44:38] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:38] Reloading browsers +INFO - [00:44:38] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:39] Reloading browsers +INFO - [00:44:39] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:40] Reloading browsers +INFO - [00:44:40] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:41] Reloading browsers +INFO - [00:44:41] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:42] Reloading browsers +INFO - [00:44:42] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:43] Reloading browsers +INFO - [00:44:43] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:44] Reloading browsers +INFO - [00:44:44] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:44] Reloading browsers +INFO - [00:44:44] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:45] Reloading browsers +INFO - [00:44:45] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:46] Reloading browsers +INFO - [00:44:46] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:47] Reloading browsers +INFO - [00:44:47] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:48] Reloading browsers +INFO - [00:44:48] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:49] Reloading browsers +INFO - [00:44:49] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:50] Reloading browsers +INFO - [00:44:50] Detected file changes +INFO - Building documentation... +INFO - [00:44:50] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:51] Reloading browsers +INFO - [00:44:51] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:52] Reloading browsers +INFO - [00:44:52] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:52] Reloading browsers +INFO - [00:44:52] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:53] Reloading browsers +INFO - [00:44:53] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:54] Reloading browsers +INFO - [00:44:54] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:55] Reloading browsers +INFO - [00:44:55] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:56] Reloading browsers +INFO - [00:44:56] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:57] Reloading browsers +INFO - [00:44:57] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:58] Reloading browsers +INFO - [00:44:58] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:58] Reloading browsers +INFO - [00:44:58] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:59] Reloading browsers +INFO - [00:44:59] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:00] Reloading browsers +INFO - [00:45:00] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:01] Reloading browsers +INFO - [00:45:01] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:02] Reloading browsers +INFO - [00:45:02] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:03] Reloading browsers +INFO - [00:45:03] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:03] Reloading browsers +INFO - [00:45:03] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:04] Reloading browsers +INFO - [00:45:04] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:05] Reloading browsers +INFO - [00:45:05] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:06] Reloading browsers +INFO - [00:45:06] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:07] Reloading browsers +INFO - [00:45:07] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:07] Reloading browsers +INFO - [00:45:07] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:08] Reloading browsers +INFO - [00:45:08] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:09] Reloading browsers +INFO - [00:45:09] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:10] Reloading browsers +INFO - [00:45:10] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:11] Reloading browsers +INFO - [00:45:11] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:12] Reloading browsers +INFO - [00:45:12] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:13] Reloading browsers +INFO - [00:45:13] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:14] Reloading browsers +INFO - [00:45:14] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:15] Reloading browsers +INFO - [00:45:15] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Documentation built in 0.94 seconds +INFO - [00:45:16] Reloading browsers +INFO - [00:45:16] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:16] Reloading browsers +INFO - [00:45:16] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:17] Reloading browsers +INFO - [00:45:17] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:18] Reloading browsers +INFO - [00:45:18] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:19] Reloading browsers +INFO - [00:45:19] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:20] Reloading browsers +INFO - [00:45:20] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:21] Reloading browsers +INFO - [00:45:21] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:22] Reloading browsers +INFO - [00:45:22] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:23] Reloading browsers +INFO - [00:45:23] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:24] Reloading browsers +INFO - [00:45:24] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:24] Reloading browsers +INFO - [00:45:24] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:25] Reloading browsers +INFO - [00:45:25] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:26] Reloading browsers +INFO - [00:45:26] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:27] Reloading browsers +INFO - [00:45:27] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:28] Reloading browsers +INFO - [00:45:28] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:29] Reloading browsers +INFO - [00:45:29] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:30] Reloading browsers +INFO - [00:45:30] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:30] Reloading browsers +INFO - [00:45:30] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:31] Reloading browsers +INFO - [00:45:31] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:32] Reloading browsers +INFO - [00:45:32] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Documentation built in 1.07 seconds +INFO - [00:45:33] Reloading browsers +INFO - [00:45:33] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:34] Reloading browsers +INFO - [00:45:34] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:35] Reloading browsers +INFO - [00:45:35] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:36] Reloading browsers +INFO - [00:45:36] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:37] Reloading browsers +INFO - [00:45:37] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:38] Reloading browsers +INFO - [00:45:38] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:39] Reloading browsers +INFO - [00:45:39] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:40] Reloading browsers +INFO - [00:45:40] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:41] Reloading browsers +INFO - [00:45:41] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:41] Reloading browsers +INFO - [00:45:41] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:42] Reloading browsers +INFO - [00:45:42] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:43] Reloading browsers +INFO - [00:45:43] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:44] Reloading browsers +INFO - [00:45:44] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Documentation built in 0.92 seconds +INFO - [00:45:45] Reloading browsers +INFO - [00:45:45] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:46] Reloading browsers +INFO - [00:45:46] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:47] Reloading browsers +INFO - [00:45:47] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:48] Reloading browsers +INFO - [00:45:48] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:49] Reloading browsers +INFO - [00:45:49] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:49] Reloading browsers +INFO - [00:45:49] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:50] Reloading browsers +INFO - [00:45:50] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:51] Reloading browsers +INFO - [00:45:51] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:52] Reloading browsers +INFO - [00:45:52] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:53] Reloading browsers +INFO - [00:45:53] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:54] Reloading browsers +INFO - [00:45:54] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:55] Reloading browsers +INFO - [00:45:55] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:55] Reloading browsers +INFO - [00:45:55] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:56] Reloading browsers +INFO - [00:45:56] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:57] Reloading browsers +INFO - [00:45:57] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:58] Reloading browsers +INFO - [00:45:58] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:59] Reloading browsers +INFO - [00:45:59] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:59] Reloading browsers +INFO - [00:45:59] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:00] Reloading browsers +INFO - [00:46:00] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:01] Reloading browsers +INFO - [00:46:01] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:02] Reloading browsers +INFO - [00:46:02] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:03] Reloading browsers +INFO - [00:46:03] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:03] Reloading browsers +INFO - [00:46:03] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:04] Reloading browsers +INFO - [00:46:04] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:05] Reloading browsers +INFO - [00:46:05] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:06] Reloading browsers +INFO - [00:46:06] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:07] Reloading browsers +INFO - [00:46:07] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:07] Reloading browsers +INFO - [00:46:07] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:08] Reloading browsers +INFO - [00:46:08] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:09] Reloading browsers +INFO - [00:46:09] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:10] Reloading browsers +INFO - [00:46:10] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:11] Reloading browsers +INFO - [00:46:11] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:12] Reloading browsers +INFO - [00:46:12] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:12] Reloading browsers +INFO - [00:46:12] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:13] Reloading browsers +INFO - [00:46:13] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:14] Reloading browsers +INFO - [00:46:14] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:15] Reloading browsers +INFO - [00:46:15] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:16] Reloading browsers +INFO - [00:46:16] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:17] Reloading browsers +INFO - [00:46:17] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:18] Reloading browsers +INFO - [00:46:18] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:18] Reloading browsers +INFO - [00:46:18] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:19] Reloading browsers +INFO - [00:46:19] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:20] Reloading browsers +INFO - [00:46:20] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:21] Reloading browsers +INFO - [00:46:21] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:22] Reloading browsers +INFO - [00:46:22] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:23] Reloading browsers +INFO - [00:46:23] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:23] Reloading browsers +INFO - [00:46:23] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:24] Reloading browsers +INFO - [00:46:24] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:25] Reloading browsers +INFO - [00:46:25] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:26] Reloading browsers +INFO - [00:46:26] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:27] Reloading browsers +INFO - [00:46:27] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:28] Reloading browsers +INFO - [00:46:28] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:28] Reloading browsers +INFO - [00:46:28] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:29] Reloading browsers +INFO - [00:46:29] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:30] Reloading browsers +INFO - [00:46:30] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:31] Reloading browsers +INFO - [00:46:31] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:32] Reloading browsers +INFO - [00:46:32] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:33] Reloading browsers +INFO - [00:46:33] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:33] Reloading browsers +INFO - [00:46:33] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:34] Reloading browsers +INFO - [00:46:34] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:35] Reloading browsers +INFO - [00:46:35] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:36] Reloading browsers +INFO - [00:46:36] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:37] Reloading browsers +INFO - [00:46:37] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:37] Reloading browsers +INFO - [00:46:37] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:38] Reloading browsers +INFO - [00:46:38] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:39] Reloading browsers +INFO - [00:46:39] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:40] Reloading browsers +INFO - [00:46:40] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:40] Reloading browsers +INFO - [00:46:40] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:41] Reloading browsers +INFO - [00:46:41] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:42] Reloading browsers +INFO - [00:46:42] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:43] Reloading browsers +INFO - [00:46:43] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:44] Reloading browsers +INFO - [00:46:44] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:44] Reloading browsers +INFO - [00:46:44] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:45] Reloading browsers +INFO - [00:46:45] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:46] Reloading browsers +INFO - [00:46:46] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:47] Reloading browsers +INFO - [00:46:47] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:48] Reloading browsers +INFO - [00:46:48] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:48] Reloading browsers +INFO - [00:46:48] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:49] Reloading browsers +INFO - [00:46:49] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:50] Reloading browsers +INFO - [00:46:50] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:51] Reloading browsers +INFO - [00:46:51] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:52] Reloading browsers +INFO - [00:46:52] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:52] Reloading browsers +INFO - [00:46:52] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:53] Reloading browsers +INFO - [00:46:53] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:54] Reloading browsers +INFO - [00:46:54] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:55] Reloading browsers +INFO - [00:46:55] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:56] Reloading browsers +INFO - [00:46:56] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:56] Reloading browsers +INFO - [00:46:56] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:57] Reloading browsers +INFO - [00:46:57] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:58] Reloading browsers +INFO - [00:46:58] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:59] Reloading browsers +INFO - [00:46:59] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:00] Reloading browsers +INFO - [00:47:00] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:00] Reloading browsers +INFO - [00:47:00] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:01] Reloading browsers +INFO - [00:47:01] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:02] Reloading browsers +INFO - [00:47:02] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:03] Reloading browsers +INFO - [00:47:03] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:04] Reloading browsers +INFO - [00:47:04] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:04] Reloading browsers +INFO - [00:47:04] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:05] Reloading browsers +INFO - [00:47:05] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:06] Reloading browsers +INFO - [00:47:06] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:07] Reloading browsers +INFO - [00:47:07] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:07] Reloading browsers +INFO - [00:47:07] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:08] Reloading browsers +INFO - [00:47:08] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:09] Reloading browsers +INFO - [00:47:09] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:10] Reloading browsers +INFO - [00:47:10] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:11] Reloading browsers +INFO - [00:47:11] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:12] Reloading browsers +INFO - [00:47:12] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:12] Reloading browsers +INFO - [00:47:12] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:13] Reloading browsers +INFO - [00:47:13] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:14] Reloading browsers +INFO - [00:47:14] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:15] Reloading browsers +INFO - [00:47:15] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:16] Reloading browsers +INFO - [00:47:16] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:17] Reloading browsers +INFO - [00:47:17] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:17] Reloading browsers +INFO - [00:47:17] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:18] Reloading browsers +INFO - [00:47:18] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:19] Reloading browsers +INFO - [00:47:19] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:20] Reloading browsers +INFO - [00:47:20] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:21] Reloading browsers +INFO - [00:47:21] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:21] Reloading browsers +INFO - [00:47:21] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:22] Reloading browsers +INFO - [00:47:22] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:23] Reloading browsers +INFO - [00:47:23] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:24] Reloading browsers +INFO - [00:47:24] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:25] Reloading browsers +INFO - [00:47:25] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:25] Reloading browsers +INFO - [00:47:25] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:26] Reloading browsers +INFO - [00:47:26] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:27] Reloading browsers +INFO - [00:47:27] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:28] Reloading browsers +INFO - [00:47:28] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:29] Reloading browsers +INFO - [00:47:29] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:29] Reloading browsers +INFO - [00:47:29] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:30] Reloading browsers +INFO - [00:47:30] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:31] Reloading browsers +INFO - [00:47:31] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:32] Reloading browsers +INFO - [00:47:32] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:33] Reloading browsers +INFO - [00:47:33] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:33] Reloading browsers +INFO - [00:47:33] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:34] Reloading browsers +INFO - [00:47:34] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:35] Reloading browsers +INFO - [00:47:35] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:36] Reloading browsers +INFO - [00:47:36] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:37] Reloading browsers +INFO - [00:47:37] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:37] Reloading browsers +INFO - [00:47:37] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:38] Reloading browsers +INFO - [00:47:38] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:39] Reloading browsers +INFO - [00:47:39] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:40] Reloading browsers +INFO - [00:47:40] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:40] Reloading browsers +INFO - [00:47:40] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:41] Reloading browsers +INFO - [00:47:41] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:42] Reloading browsers +INFO - [00:47:42] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:43] Reloading browsers +INFO - [00:47:43] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:44] Reloading browsers +INFO - [00:47:44] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:44] Reloading browsers +INFO - [00:47:44] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:45] Reloading browsers +INFO - [00:47:45] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:46] Reloading browsers +INFO - [00:47:46] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:47] Reloading browsers +INFO - [00:47:47] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:48] Reloading browsers +INFO - [00:47:48] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:48] Reloading browsers +INFO - [00:47:48] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:49] Reloading browsers +INFO - [00:47:49] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:50] Reloading browsers +INFO - [00:47:50] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:51] Reloading browsers +INFO - [00:47:51] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:52] Reloading browsers +INFO - [00:47:52] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:52] Reloading browsers +INFO - [00:47:52] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:53] Reloading browsers +INFO - [00:47:53] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:54] Reloading browsers +INFO - [00:47:54] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:55] Reloading browsers +INFO - [00:47:55] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:55] Reloading browsers +INFO - [00:47:55] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:56] Reloading browsers +INFO - [00:47:56] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:57] Reloading browsers +INFO - [00:47:57] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:58] Reloading browsers +INFO - [00:47:58] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:58] Reloading browsers +INFO - [00:47:59] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:59] Reloading browsers +INFO - [00:47:59] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:00] Reloading browsers +INFO - [00:48:00] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:01] Reloading browsers +INFO - [00:48:01] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:02] Reloading browsers +INFO - [00:48:02] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:02] Reloading browsers +INFO - [00:48:02] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:03] Reloading browsers +INFO - [00:48:03] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:04] Reloading browsers +INFO - [00:48:04] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:05] Reloading browsers +INFO - [00:48:05] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:06] Reloading browsers +INFO - [00:48:06] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:06] Reloading browsers +INFO - [00:48:06] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:07] Reloading browsers +INFO - [00:48:07] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:08] Reloading browsers +INFO - [00:48:08] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:09] Reloading browsers +INFO - [00:48:09] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:09] Reloading browsers +INFO - [00:48:09] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:10] Reloading browsers +INFO - [00:48:10] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:11] Reloading browsers +INFO - [00:48:11] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:12] Reloading browsers +INFO - [00:48:12] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:13] Reloading browsers +INFO - [00:48:13] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:14] Reloading browsers +INFO - [00:48:14] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:14] Reloading browsers +INFO - [00:48:14] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:15] Reloading browsers +INFO - [00:48:15] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:16] Reloading browsers +INFO - [00:48:16] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:17] Reloading browsers +INFO - [00:48:17] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:17] Reloading browsers +INFO - [00:48:17] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:18] Reloading browsers +INFO - [00:48:18] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:19] Reloading browsers +INFO - [00:48:19] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:20] Reloading browsers +INFO - [00:48:20] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:21] Reloading browsers +INFO - [00:48:21] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:21] Reloading browsers +INFO - [00:48:21] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:22] Reloading browsers +INFO - [00:48:22] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:23] Reloading browsers +INFO - [00:48:23] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:24] Reloading browsers +INFO - [00:48:24] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:25] Reloading browsers +INFO - [00:48:25] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:25] Reloading browsers +INFO - [00:48:25] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:26] Reloading browsers +INFO - [00:48:26] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:27] Reloading browsers +INFO - [00:48:27] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:28] Reloading browsers +INFO - [00:48:28] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:28] Reloading browsers +INFO - [00:48:28] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:29] Reloading browsers +INFO - [00:48:29] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:30] Reloading browsers +INFO - [00:48:30] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:31] Reloading browsers +INFO - [00:48:31] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:32] Reloading browsers +INFO - [00:48:32] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:32] Reloading browsers +INFO - [00:48:32] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:33] Reloading browsers +INFO - [00:48:33] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:34] Reloading browsers +INFO - [00:48:34] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:35] Reloading browsers +INFO - [00:48:35] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:35] Reloading browsers +INFO - [00:48:36] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:36] Reloading browsers +INFO - [00:48:36] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:37] Reloading browsers +INFO - [00:48:37] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:38] Reloading browsers +INFO - [00:48:38] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:39] Reloading browsers +INFO - [00:48:39] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:39] Reloading browsers +INFO - [00:48:39] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:40] Reloading browsers +INFO - [00:48:40] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:41] Reloading browsers +INFO - [00:48:41] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:42] Reloading browsers +INFO - [00:48:42] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:43] Reloading browsers +INFO - [00:48:43] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:44] Reloading browsers +INFO - [00:48:44] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:45] Reloading browsers +INFO - [00:48:45] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:45] Reloading browsers +INFO - [00:48:45] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:46] Reloading browsers +INFO - [00:48:46] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:47] Reloading browsers +INFO - [00:48:47] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:48] Reloading browsers +INFO - [00:48:48] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:49] Reloading browsers +INFO - [00:48:49] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:50] Reloading browsers +INFO - [00:48:50] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:50] Reloading browsers +INFO - [00:48:50] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:51] Reloading browsers +INFO - [00:48:51] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:52] Reloading browsers +INFO - [00:48:52] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:53] Reloading browsers +INFO - [00:48:53] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:54] Reloading browsers +INFO - [00:48:54] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:55] Reloading browsers +INFO - [00:48:55] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:56] Reloading browsers +INFO - [00:48:56] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:56] Reloading browsers +INFO - [00:48:56] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:57] Reloading browsers +INFO - [00:48:57] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:58] Reloading browsers +INFO - [00:48:58] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:59] Reloading browsers +INFO - [00:48:59] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:00] Reloading browsers +INFO - [00:49:00] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:01] Reloading browsers +INFO - [00:49:01] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:01] Reloading browsers +INFO - [00:49:01] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:02] Reloading browsers +INFO - [00:49:02] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:03] Reloading browsers +INFO - [00:49:03] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:04] Reloading browsers +INFO - [00:49:04] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:05] Reloading browsers +INFO - [00:49:05] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:06] Reloading browsers +INFO - [00:49:06] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:06] Reloading browsers +INFO - [00:49:06] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:07] Reloading browsers +INFO - [00:49:07] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:08] Reloading browsers +INFO - [00:49:08] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:09] Reloading browsers +INFO - [00:49:09] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:10] Reloading browsers +INFO - [00:49:10] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:11] Reloading browsers +INFO - [00:49:11] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:11] Reloading browsers +INFO - [00:49:11] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:12] Reloading browsers +INFO - [00:49:12] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:13] Reloading browsers +INFO - [00:49:13] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:14] Reloading browsers +INFO - [00:49:14] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:15] Reloading browsers +INFO - [00:49:15] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:16] Reloading browsers +INFO - [00:49:16] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:16] Reloading browsers +INFO - [00:49:16] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:17] Reloading browsers +INFO - [00:49:17] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:18] Reloading browsers +INFO - [00:49:18] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:19] Reloading browsers +INFO - [00:49:19] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:20] Reloading browsers +INFO - [00:49:20] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:21] Reloading browsers +INFO - [00:49:21] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:21] Reloading browsers +INFO - [00:49:21] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:22] Reloading browsers +INFO - [00:49:22] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:23] Reloading browsers +INFO - [00:49:23] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:24] Reloading browsers +INFO - [00:49:24] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:24] Reloading browsers +INFO - [00:49:24] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:25] Reloading browsers +INFO - [00:49:25] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:26] Reloading browsers +INFO - [00:49:26] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:27] Reloading browsers +INFO - [00:49:27] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:28] Reloading browsers +INFO - [00:49:28] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:28] Reloading browsers +INFO - [00:49:28] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:29] Reloading browsers +INFO - [00:49:29] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:30] Reloading browsers +INFO - [00:49:30] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:31] Reloading browsers +INFO - [00:49:31] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:32] Reloading browsers +INFO - [00:49:32] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:32] Reloading browsers +INFO - [00:49:32] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:33] Reloading browsers +INFO - [00:49:33] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:34] Reloading browsers +INFO - [00:49:34] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:35] Reloading browsers +INFO - [00:49:35] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:36] Reloading browsers +INFO - [00:49:36] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:36] Reloading browsers +INFO - [00:49:36] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:37] Reloading browsers +INFO - [00:49:37] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:38] Reloading browsers +INFO - [00:49:38] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:39] Reloading browsers +INFO - [00:49:39] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:40] Reloading browsers +INFO - [00:49:40] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:41] Reloading browsers +INFO - [00:49:41] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:41] Reloading browsers +INFO - [00:49:41] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:42] Reloading browsers +INFO - [00:49:42] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:43] Reloading browsers +INFO - [00:49:43] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:44] Reloading browsers +INFO - [00:49:44] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:44] Reloading browsers +INFO - [00:49:44] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:45] Reloading browsers +INFO - [00:49:45] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:46] Reloading browsers +INFO - [00:49:46] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:47] Reloading browsers +INFO - [00:49:47] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:48] Reloading browsers +INFO - [00:49:48] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:48] Reloading browsers +INFO - [00:49:48] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:49] Reloading browsers +INFO - [00:49:49] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:50] Reloading browsers +INFO - [00:49:50] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:51] Reloading browsers +INFO - [00:49:51] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:51] Reloading browsers +INFO - [00:49:51] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:52] Reloading browsers +INFO - [00:49:52] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:53] Reloading browsers +INFO - [00:49:53] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:54] Reloading browsers +INFO - [00:49:54] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:55] Reloading browsers +INFO - [00:49:55] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:55] Reloading browsers +INFO - [00:49:55] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:56] Reloading browsers +INFO - [00:49:56] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:57] Reloading browsers +INFO - [00:49:57] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:58] Reloading browsers +INFO - [00:49:58] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:58] Reloading browsers +INFO - [00:49:58] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:59] Reloading browsers +INFO - [00:49:59] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:00] Reloading browsers +INFO - [00:50:00] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:01] Reloading browsers +INFO - [00:50:01] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:02] Reloading browsers +INFO - [00:50:02] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:02] Reloading browsers +INFO - [00:50:02] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:03] Reloading browsers +INFO - [00:50:03] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:04] Reloading browsers +INFO - [00:50:04] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:05] Reloading browsers +INFO - [00:50:05] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:05] Reloading browsers +INFO - [00:50:05] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:06] Reloading browsers +INFO - [00:50:06] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:07] Reloading browsers +INFO - [00:50:07] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:08] Reloading browsers +INFO - [00:50:08] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:09] Reloading browsers +INFO - [00:50:09] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:09] Reloading browsers +INFO - [00:50:09] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:10] Reloading browsers +INFO - [00:50:10] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:11] Reloading browsers +INFO - [00:50:11] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:12] Reloading browsers +INFO - [00:50:12] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:13] Reloading browsers +INFO - [00:50:13] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:13] Reloading browsers +INFO - [00:50:13] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:14] Reloading browsers +INFO - [00:50:14] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:15] Reloading browsers +INFO - [00:50:15] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:16] Reloading browsers +INFO - [00:50:16] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:16] Reloading browsers +INFO - [00:50:16] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:17] Reloading browsers +INFO - [00:50:17] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:18] Reloading browsers +INFO - [00:50:18] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:19] Reloading browsers +INFO - [00:50:19] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:19] Reloading browsers +INFO - [00:50:19] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:20] Reloading browsers +INFO - [00:50:20] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:21] Reloading browsers +INFO - [00:50:21] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:22] Reloading browsers +INFO - [00:50:22] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:23] Reloading browsers +INFO - [00:50:23] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:23] Reloading browsers +INFO - [00:50:23] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:24] Reloading browsers +INFO - [00:50:24] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:25] Reloading browsers +INFO - [00:50:25] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:26] Reloading browsers +INFO - [00:50:26] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:26] Reloading browsers +INFO - [00:50:26] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:27] Reloading browsers +INFO - [00:50:27] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:28] Reloading browsers +INFO - [00:50:28] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:29] Reloading browsers +INFO - [00:50:29] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:29] Reloading browsers +INFO - [00:50:30] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:30] Reloading browsers +INFO - [00:50:30] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:31] Reloading browsers +INFO - [00:50:31] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:32] Reloading browsers +INFO - [00:50:32] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:33] Reloading browsers +INFO - [00:50:33] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:33] Reloading browsers +INFO - [00:50:33] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:34] Reloading browsers +INFO - [00:50:34] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:35] Reloading browsers +INFO - [00:50:35] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:36] Reloading browsers +INFO - [00:50:36] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:36] Reloading browsers +INFO - [00:50:36] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:37] Reloading browsers +INFO - [00:50:37] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:38] Reloading browsers +INFO - [00:50:38] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:39] Reloading browsers +INFO - [00:50:39] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:39] Reloading browsers +INFO - [00:50:40] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:40] Reloading browsers +INFO - [00:50:40] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:41] Reloading browsers +INFO - [00:50:41] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:42] Reloading browsers +INFO - [00:50:42] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:43] Reloading browsers +INFO - [00:50:43] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:43] Reloading browsers +INFO - [00:50:43] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:44] Reloading browsers +INFO - [00:50:44] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:45] Reloading browsers +INFO - [00:50:45] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Documentation built in 0.60 seconds +INFO - [00:50:46] Reloading browsers +INFO - [00:50:46] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:46] Reloading browsers +INFO - [00:50:46] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:47] Reloading browsers +INFO - [00:50:47] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:48] Reloading browsers +INFO - [00:50:48] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:49] Reloading browsers +INFO - [00:50:49] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:49] Reloading browsers +INFO - [00:50:49] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:50] Reloading browsers +INFO - [00:50:50] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:51] Reloading browsers +INFO - [00:50:51] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:52] Reloading browsers +INFO - [00:50:52] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:53] Reloading browsers +INFO - [00:50:53] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:53] Reloading browsers +INFO - [00:50:53] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:54] Reloading browsers +INFO - [00:50:54] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:55] Reloading browsers +INFO - [00:50:55] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:56] Reloading browsers +INFO - [00:50:56] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:56] Reloading browsers +INFO - [00:50:56] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:57] Reloading browsers +INFO - [00:50:57] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:58] Reloading browsers +INFO - [00:50:58] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:59] Reloading browsers +INFO - [00:50:59] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:59] Reloading browsers +INFO - [00:50:59] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:00] Reloading browsers +INFO - [00:51:00] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:01] Reloading browsers +INFO - [00:51:01] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:02] Reloading browsers +INFO - [00:51:02] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:03] Reloading browsers +INFO - [00:51:03] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:03] Reloading browsers +INFO - [00:51:03] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:04] Reloading browsers +INFO - [00:51:04] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:05] Reloading browsers +INFO - [00:51:05] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:06] Reloading browsers +INFO - [00:51:06] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:06] Reloading browsers +INFO - [00:51:06] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:07] Reloading browsers +INFO - [00:51:07] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:08] Reloading browsers +INFO - [00:51:08] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:09] Reloading browsers +INFO - [00:51:09] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:09] Reloading browsers +INFO - [00:51:09] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:10] Reloading browsers +INFO - [00:51:10] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:11] Reloading browsers +INFO - [00:51:11] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:12] Reloading browsers +INFO - [00:51:12] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:13] Reloading browsers +INFO - [00:51:13] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:13] Reloading browsers +INFO - [00:51:13] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:14] Reloading browsers +INFO - [00:51:14] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:15] Reloading browsers +INFO - [00:51:15] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:16] Reloading browsers +INFO - [00:51:16] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:16] Reloading browsers +INFO - [00:51:16] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:17] Reloading browsers +INFO - [00:51:17] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:18] Reloading browsers +INFO - [00:51:18] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:19] Reloading browsers +INFO - [00:51:19] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:19] Reloading browsers +INFO - [00:51:19] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:20] Reloading browsers +INFO - [00:51:20] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:21] Reloading browsers +INFO - [00:51:21] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:22] Reloading browsers +INFO - [00:51:22] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:23] Reloading browsers +INFO - [00:51:23] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:23] Reloading browsers +INFO - [00:51:23] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:24] Reloading browsers +INFO - [00:51:24] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:25] Reloading browsers +INFO - [00:51:25] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:26] Reloading browsers +INFO - [00:51:26] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:26] Reloading browsers +INFO - [00:51:26] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:27] Reloading browsers +INFO - [00:51:27] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:28] Reloading browsers +INFO - [00:51:28] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:29] Reloading browsers +INFO - [00:51:29] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:29] Reloading browsers +INFO - [00:51:29] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:30] Reloading browsers +INFO - [00:51:30] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:31] Reloading browsers +INFO - [00:51:31] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:32] Reloading browsers +INFO - [00:51:32] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:33] Reloading browsers +INFO - [00:51:33] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:33] Reloading browsers +INFO - [00:51:33] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:34] Reloading browsers +INFO - [00:51:34] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:35] Reloading browsers +INFO - [00:51:35] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:36] Reloading browsers +INFO - [00:51:36] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:36] Reloading browsers +INFO - [00:51:36] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:37] Reloading browsers +INFO - [00:51:37] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:38] Reloading browsers +INFO - [00:51:38] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:39] Reloading browsers +INFO - [00:51:39] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:39] Reloading browsers +INFO - [00:51:39] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:40] Reloading browsers +INFO - [00:51:40] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:41] Reloading browsers +INFO - [00:51:41] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:42] Reloading browsers +INFO - [00:51:42] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:43] Reloading browsers +INFO - [00:51:43] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:43] Reloading browsers +INFO - [00:51:43] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:44] Reloading browsers +INFO - [00:51:44] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:45] Reloading browsers +INFO - [00:51:45] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:46] Reloading browsers +INFO - [00:51:46] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:46] Reloading browsers +INFO - [00:51:46] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:47] Reloading browsers +INFO - [00:51:47] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:48] Reloading browsers +INFO - [00:51:48] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:49] Reloading browsers +INFO - [00:51:49] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:50] Reloading browsers +INFO - [00:51:50] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:50] Reloading browsers +INFO - [00:51:50] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:51] Reloading browsers +INFO - [00:51:51] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:52] Reloading browsers +INFO - [00:51:52] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:53] Reloading browsers +INFO - [00:51:53] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:53] Reloading browsers +INFO - [00:51:53] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:54] Reloading browsers +INFO - [00:51:54] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:55] Reloading browsers +INFO - [00:51:55] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:56] Reloading browsers +INFO - [00:51:56] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:57] Reloading browsers +INFO - [00:51:57] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:57] Reloading browsers +INFO - [00:51:57] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:58] Reloading browsers +INFO - [00:51:58] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:59] Reloading browsers +INFO - [00:51:59] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:00] Reloading browsers +INFO - [00:52:00] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:00] Reloading browsers +INFO - [00:52:00] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:01] Reloading browsers +INFO - [00:52:01] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:02] Reloading browsers +INFO - [00:52:02] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:03] Reloading browsers +INFO - [00:52:03] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:04] Reloading browsers +INFO - [00:52:04] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:04] Reloading browsers +INFO - [00:52:04] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:05] Reloading browsers +INFO - [00:52:05] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:06] Reloading browsers +INFO - [00:52:06] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:07] Reloading browsers +INFO - [00:52:07] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:07] Reloading browsers +INFO - [00:52:07] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:08] Reloading browsers +INFO - [00:52:08] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:09] Reloading browsers +INFO - [00:52:09] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:10] Reloading browsers +INFO - [00:52:10] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:10] Reloading browsers +INFO - [00:52:10] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:11] Reloading browsers +INFO - [00:52:11] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:12] Reloading browsers +INFO - [00:52:12] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:13] Reloading browsers +INFO - [00:52:13] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:14] Reloading browsers +INFO - [00:52:14] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:14] Reloading browsers +INFO - [00:52:14] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:15] Reloading browsers +INFO - [00:52:15] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:16] Reloading browsers +INFO - [00:52:16] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:17] Reloading browsers +INFO - [00:52:17] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:17] Reloading browsers +INFO - [00:52:17] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:18] Reloading browsers +INFO - [00:52:18] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:19] Reloading browsers +INFO - [00:52:19] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:20] Reloading browsers +INFO - [00:52:20] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:21] Reloading browsers +INFO - [00:52:21] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:21] Reloading browsers +INFO - [00:52:21] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:22] Reloading browsers +INFO - [00:52:22] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:23] Reloading browsers +INFO - [00:52:23] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:24] Reloading browsers +INFO - [00:52:24] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:24] Reloading browsers +INFO - [00:52:24] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:25] Reloading browsers +INFO - [00:52:25] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:26] Reloading browsers +INFO - [00:52:26] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:27] Reloading browsers +INFO - [00:52:27] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:27] Reloading browsers +INFO - [00:52:27] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:28] Reloading browsers +INFO - [00:52:28] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:29] Reloading browsers +INFO - [00:52:29] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:30] Reloading browsers +INFO - [00:52:30] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:31] Reloading browsers +INFO - [00:52:31] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:31] Reloading browsers +INFO - [00:52:31] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:32] Reloading browsers +INFO - [00:52:32] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:33] Reloading browsers +INFO - [00:52:33] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:34] Reloading browsers +INFO - [00:52:34] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:34] Reloading browsers +INFO - [00:52:34] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:35] Reloading browsers +INFO - [00:52:35] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:36] Reloading browsers +INFO - [00:52:36] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:37] Reloading browsers +INFO - [00:52:37] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:37] Reloading browsers +INFO - [00:52:37] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:38] Reloading browsers +INFO - [00:52:38] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:39] Reloading browsers +INFO - [00:52:39] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:40] Reloading browsers +INFO - [00:52:40] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:41] Reloading browsers +INFO - [00:52:41] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:41] Reloading browsers +INFO - [00:52:41] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:42] Reloading browsers +INFO - [00:52:42] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:43] Reloading browsers +INFO - [00:52:43] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:44] Reloading browsers +INFO - [00:52:44] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:45] Reloading browsers +INFO - [00:52:45] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:45] Reloading browsers +INFO - [00:52:45] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:46] Reloading browsers +INFO - [00:52:46] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:47] Reloading browsers +INFO - [00:52:47] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:48] Reloading browsers +INFO - [00:52:48] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:49] Reloading browsers +INFO - [00:52:49] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:49] Reloading browsers +INFO - [00:52:49] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:50] Reloading browsers +INFO - [00:52:50] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:51] Reloading browsers +INFO - [00:52:51] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:52] Reloading browsers +INFO - [00:52:52] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:52] Reloading browsers +INFO - [00:52:52] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:53] Reloading browsers +INFO - [00:52:53] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:54] Reloading browsers +INFO - [00:52:54] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:55] Reloading browsers +INFO - [00:52:55] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:55] Reloading browsers +INFO - [00:52:55] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:56] Reloading browsers +INFO - [00:52:56] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:57] Reloading browsers +INFO - [00:52:57] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:58] Reloading browsers +INFO - [00:52:58] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:59] Reloading browsers +INFO - [00:52:59] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:59] Reloading browsers +INFO - [00:52:59] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:53:00] Reloading browsers +INFO - [00:53:00] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:53:01] Reloading browsers +INFO - [00:53:01] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:53:02] Reloading browsers +INFO - [00:53:02] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:53:02] Reloading browsers +INFO - [00:53:02] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:53:03] Reloading browsers +INFO - [00:53:03] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:53:04] Reloading browsers +INFO - [00:53:04] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:53:05] Reloading browsers +INFO - [00:53:05] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:53:06] Reloading browsers +INFO - [00:53:06] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:53:06] Reloading browsers +INFO - [00:53:06] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:53:07] Reloading browsers +INFO - [00:53:07] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:53:08] Reloading browsers +INFO - [00:53:08] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:53:09] Reloading browsers +INFO - [00:53:09] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:53:09] Reloading browsers +INFO - [00:53:09] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:53:10] Reloading browsers +INFO - [00:53:10] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:53:11] Reloading browsers +INFO - [00:53:11] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:53:12] Reloading browsers +INFO - [00:53:12] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:53:12] Reloading browsers +INFO - [00:53:12] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:53:13] Reloading browsers +INFO - [00:53:13] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:53:14] Reloading browsers +INFO - [00:53:14] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:53:15] Reloading browsers +INFO - [00:53:15] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:53:15] Reloading browsers +INFO - [00:53:16] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:53:16] Reloading browsers +INFO - [00:53:16] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:53:17] Reloading browsers +INFO - [00:53:17] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:53:18] Reloading browsers +INFO - [00:53:18] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:53:19] Reloading browsers +INFO - [00:53:19] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:53:19] Reloading browsers +INFO - [00:53:19] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:53:20] Reloading browsers +INFO - [00:53:20] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:53:21] Reloading browsers +INFO - [00:53:21] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:53:22] Reloading browsers +INFO - [00:53:22] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:53:22] Reloading browsers +INFO - [00:53:22] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:53:23] Reloading browsers +INFO - [00:53:23] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:53:24] Reloading browsers +INFO - [00:53:24] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:53:25] Reloading browsers +INFO - [00:53:25] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:53:26] Reloading browsers +INFO - [00:53:26] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:53:26] Reloading browsers +INFO - [00:53:26] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:53:27] Reloading browsers +INFO - [00:53:27] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:53:28] Reloading browsers +INFO - [00:53:28] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:53:29] Reloading browsers +INFO - [00:53:29] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:53:29] Reloading browsers +INFO - [00:53:29] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:53:30] Reloading browsers +INFO - [00:53:30] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:53:31] Reloading browsers +INFO - [00:53:31] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:53:32] Reloading browsers +INFO - [00:53:32] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:53:32] Reloading browsers +INFO - [00:53:32] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:53:33] Reloading browsers +INFO - [00:53:33] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:53:34] Reloading browsers +INFO - [00:53:34] Detected file changes +INFO - Building documentation... diff --git a/mkdocs.yml b/mkdocs.yml index f6dc86d6..9bfcb229 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -18,6 +18,8 @@ extra_css: - stylesheets/extra.css markdown_extensions: - admonition + - attr_list + - md_in_html - pymdownx.highlight: anchor_linenums: true line_spans: __span @@ -56,7 +58,6 @@ nav: - docs/development/frame_conventions.md - Robot: - docs/robot/index.md - - docs/robot/common_topics.md - Autonomy Modules: - Robot Interface: - docs/robot/autonomy/0_interface/index.md @@ -69,8 +70,16 @@ nav: - docs/robot/autonomy/3_local/index.md - World Model: - docs/robot/autonomy/3_local/world_model/index.md + - DROAN (Obstacle Avoidance World Model): + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_graph/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_graph_cost_map/README.md - Planning: - docs/robot/autonomy/3_local/planning/index.md + - robot/ros_ws/src/autonomy/3_local/b_planners/trajectory_library/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - DROAN (Obstacle Avoidance Planner): + - robot/ros_ws/src/autonomy/3_local/b_planners/droan_local_planner/README.md - Controls: - docs/robot/autonomy/3_local/controls/index.md - robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md @@ -118,11 +127,12 @@ repo_name: castacks/AirStack repo_url: https://github.com/castacks/AirStack theme: favicon: docs/assets/StackedWhite.png + custom_dir: docs/overrides features: - navigation.indexes - navigation.path - navigation.tabs - - navigation.expand + # - navigation.expand - navigation.footer - navigation.top - navigation.sections diff --git a/robot/docker/Dockerfile.robot b/robot/docker/Dockerfile.robot index b0c4f85d..c3531959 100644 --- a/robot/docker/Dockerfile.robot +++ b/robot/docker/Dockerfile.robot @@ -38,7 +38,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ RUN sudo add-apt-repository universe \ && curl -sSL https://raw.githubusercontent.com/ros/rosdistro/master/ros.key -o /usr/share/keyrings/ros-archive-keyring.gpg \ && echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/ros-archive-keyring.gpg] http://packages.ros.org/ros2/ubuntu $(. /etc/os-release && echo $UBUNTU_CODENAME) main" | sudo tee /etc/apt/sources.list.d/ros2.list > /dev/null \ - && apt-get update && apt-get install -y --no-install-recommends \ + && apt-get update && apt upgrade -y && apt-get install -y --no-install-recommends \ ros-humble-desktop \ python3-argcomplete \ && rm -rf /var/lib/apt/lists/* @@ -63,6 +63,7 @@ RUN apt update && apt install -y \ cmake build-essential \ less htop jq \ python3-pip \ + python3-rosdep \ tmux \ gdb @@ -78,16 +79,16 @@ RUN apt update -y && apt install -y \ ros-humble-domain-bridge \ libcgal-dev \ python3-colcon-common-extensions -RUN /opt/ros/humble/lib/mavros/install_geographiclib_datasets.sh +RUN /opt/ros/humble/lib/mavros/install_geographiclib_datasets.sh # Install Python dependencies RUN pip3 install \ empy \ future \ lxml \ - matplotlib \ - numpy \ + matplotlib==3.8.4 \ + numpy==1.24.0 \ pkgconfig \ psutil \ pygments \ @@ -98,8 +99,22 @@ RUN pip3 install \ setuptools \ six \ toml \ - scipy - + scipy \ + torch \ + torchvision \ + pypose \ + rich \ + tqdm \ + pillow \ + flow_vis \ + h5py \ + evo \ + tabulate \ + einops \ + timm==0.9.12 \ + rerun-sdk==0.17 \ + yacs \ + wandb # Override install newer openvdb 9.1.0 for compatibility with Ubuntu 22.04 https://bugs.launchpad.net/bugs/1970108 RUN apt remove -y libopenvdb*; \ @@ -124,18 +139,29 @@ EXPOSE 22 ARG REAL_ROBOT=false RUN if [ "$REAL_ROBOT" = "true" ]; then \ # Put commands here that should run for the real robot but not the sim - echo "REAL_ROBOT is true"; \ apt-get update && apt-get install -y libimath-dev; \ else \ # Put commands here that should be run for the sim but not the real robot - echo "REAL_ROBOT is false"; \ fi +# Downloading model weights for MACVO +WORKDIR /root/model_weights +RUN wget -r "https://github.com/MAC-VO/MAC-VO/releases/download/model/MACVO_FrontendCov.pth" && \ + mv /root/model_weights/github.com/MAC-VO/MAC-VO/releases/download/model/MACVO_FrontendCov.pth /root/model_weights/MACVO_FrontendCov.pth && \ + rm -rf /root/model_weights/github.com + +WORKDIR /root/ros_ws # Cleanup. Prevent people accidentally doing git commits as root in Docker RUN apt purge git -y \ && apt autoremove -y \ && apt clean -y \ && rm -rf /var/lib/apt/lists/* +# Install colcon, seems to be getting removed +RUN pip install -U colcon-common-extensions + +# Fixes for MACVO Integration +RUN pip install huggingface_hub +RUN pip uninstall matplotlib -y \ No newline at end of file diff --git a/robot/docker/robot-base-docker-compose.yaml b/robot/docker/robot-base-docker-compose.yaml index 394f4ee3..1f9fff6c 100644 --- a/robot/docker/robot-base-docker-compose.yaml +++ b/robot/docker/robot-base-docker-compose.yaml @@ -10,6 +10,8 @@ services: environment: - DISPLAY - QT_X11_NO_MITSHM=1 + env_file: + - ${ROBOT_ENV_FILE_NAME} deploy: # let it use the GPU resources: diff --git a/robot/docker/robot.env b/robot/docker/robot.env new file mode 100644 index 00000000..fe9021d3 --- /dev/null +++ b/robot/docker/robot.env @@ -0,0 +1,2 @@ +# These become environment variables in the robot container +USE_MACVO="false" \ No newline at end of file diff --git a/robot/ros_ws/src/autonomy/1_sensors/camera_param_server/README.md b/robot/ros_ws/src/autonomy/1_sensors/camera_param_server/README.md new file mode 100644 index 00000000..1f17a4c7 --- /dev/null +++ b/robot/ros_ws/src/autonomy/1_sensors/camera_param_server/README.md @@ -0,0 +1,51 @@ + +# Camera Parameter Server + +## Summary + +The camera parameter server was designed to eliminate the need for multiple nodes to subscribe to each camera individually, reducing unnecessary subscribers and callbacks. Its sole purpose is to listen to the camera info topics, store relevant information about the cameras, and provide it on demand for other nodes to query. + +## Configuration + +The camera parameter server is currently configurable through a non-ROS configuration file. This file allows users to define a list of cameras, specifying their types and topic names. At the top level of the configuration, a base link name is provided to indicate the `tf` name for the robot's center. Additionally, a parameter called `camera_list` contains a list of dictionaries, with each dictionary representing an individual camera. Currently, two camera types are supported: monocular and stereo. + +## Parameters + +Below are the parameters needed for the meta level camera parameter server configuration, as well as the camera fields needed to specify individual camera types. + +### Meta Level Parameters + +|
Parameter
| Description +|----------------------------|--------------------------------------------------------------- +| `base_link_frame_id` | The frame name of the base link, or center frame of the robot| +| `camera_list` | A list of dictionaries that define each camera of the system| + +### Monocular Camera Parameters + +|
Parameter
| Description +|----------------------------|--------------------------------------------------------------- +| `camera_name` | The name of the camera| +| `camera_type` | The type of camera, for monocular being `mono` | +| `camera_info_sub_topic` | The info topic name for the camera, normally `camera_info`| +| `camera_frame_id` | The frame name of the camera to find its tf | + +### Stereo Camera Parameters + +|
Parameter
| Description +|----------------------------|--------------------------------------------------------------- +| `camera_name` | The name of the camera| +| `camera_type` | The type of camera, for stereo being `stereo` | +| `camera_info_sub_topic` | The info topic name for the camera, normally `camera_info`| +| `left_camera_frame_id` | The frame name of the left camera for find its tf | +| `right_camera_frame_id` | The frame name of the right camera to find its tf | + +## Services +|
Parameter
| Type | Description +|----------------------------|----------------------------------------|-----------------------| +| `~/get_camera_params` | sensor_interfaces/GetCameraParams | The service to get info about the desired camera. This provides camera intrinsics, transform frame ids, and baseline if the camera type is a stereo| + +## Subscriptions +|
Parameter
| Type | Description +|----------------------------|----------------------------------------|-----------------------| +| `tf/` | tfMessage | Listens for the tf for the specified cameras | +| `~/camera_info` | sensor_msgs/CameraInfo | Listens for the info for specified cameras| \ No newline at end of file diff --git a/robot/ros_ws/src/autonomy/1_sensors/camera_param_server/camera_param_server/__init__.py b/robot/ros_ws/src/autonomy/1_sensors/camera_param_server/camera_param_server/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/robot/ros_ws/src/autonomy/1_sensors/camera_param_server/camera_param_server/camera_param_server.py b/robot/ros_ws/src/autonomy/1_sensors/camera_param_server/camera_param_server/camera_param_server.py new file mode 100644 index 00000000..ce3dace3 --- /dev/null +++ b/robot/ros_ws/src/autonomy/1_sensors/camera_param_server/camera_param_server/camera_param_server.py @@ -0,0 +1,208 @@ +import rclpy +from rclpy.node import Node +import tf2_ros + +from sensor_msgs.msg import CameraInfo +from sensor_interfaces.srv import GetCameraParams + +import yaml +import os +import numpy as np + +class StereoCameraInfo: + def __init__(self, node, camera_name, camera_info_topic, left_camera_frame_id, right_camera_frame_id): + self.left_camera_info = CameraInfo() + self.right_camera_info = CameraInfo() + self.camera_type = 'stereo' + + self.tf_initialized = False + self.left_info_initialized = False + self.right_info_initialized = False + self.info_initialized = False + + left_info_topic_merged = camera_name + '/left/' + camera_info_topic + right_info_topic_merged = camera_name + '/right/' + camera_info_topic + self.left_camera_info_sub = node.create_subscription(CameraInfo, left_info_topic_merged, self.left_camera_info_callback, 10) + self.right_camera_info_sub = node.create_subscription(CameraInfo, right_info_topic_merged, self.right_camera_info_callback, 10) + + self.camera_name = camera_name + self.left_camera_frame_id = left_camera_frame_id + self.right_camera_frame_id = right_camera_frame_id + self.base_link_frame_id = node.base_link_frame_id + self.left_camera_transform_to_baselink = None + self.right_camera_transform_to_baselink = None + self.baseline = None + + def left_camera_info_callback(self, msg): + self.left_camera_info = msg + self.left_info_initialized = True + if self.left_info_initialized and self.right_info_initialized: + self.info_initialized = True + + def right_camera_info_callback(self, msg): + self.right_camera_info = msg + self.right_info_initialized = True + if self.left_info_initialized and self.right_info_initialized: + self.info_initialized = True + +class MonoCameraInfo: + def __init__(self, node, camera_name, camera_info_topic, camera_frame_id): + self.camera_info = CameraInfo() + self.camera_type = 'mono' + + self.info_initialized = False + + info_topic_merged = camera_name + '/' + camera_info_topic + self.camera_info_sub = node.create_subscription(CameraInfo, info_topic_merged, self.camera_info_callback, 10) + + self.camera_name = camera_name + self.camera_frame_id = camera_frame_id + self.base_link_frame_id = node.base_link_frame_id + self.camera_transform_to_baselink = None + + def camera_info_callback(self, msg): + self.camera_info = msg + self.info_initialized = True + +class CameraParamServer(Node): + def __init__(self): + super().__init__('cam_param_server') + + self.camera_dict = {} + self.base_link_frame_id = None + + self.tfs_initialized = False + self.info_initialized = False + self.server_initialized = False + + self.declare_parameter('camera_config', rclpy.parameter.Parameter.Type.STRING) + camera_config_file = self.get_parameter('camera_config').value + if not os.path.exists(camera_config_file): + self.get_logger().error('Camera configuration file not found: %s' % camera_config_file) + return + + self.parse_camera_config(camera_config_file) + + self.tf_buffer = tf2_ros.Buffer() + self.tf_listener = tf2_ros.TransformListener(self.tf_buffer, self) + self.tf_checking_timer = self.create_timer(0.1, self.check_tf) + + def parse_camera_config(self, config_file_path): + try: + config_file = self.load_config(config_file_path) + camera_list = config_file.get('camera_list') + self.base_link_frame_id = config_file.get('base_link_frame_id') + except Exception as e: + self.get_logger().error(f"Error parsing camera config file: {e}") + + for camera in camera_list: + camera_name = camera.get('camera_name') + if camera.get('camera_type') == 'stereo': + self.camera_dict[camera_name] = StereoCameraInfo(self, camera_name, + camera.get('camera_info_sub_topic'), + camera.get('left_camera_frame_id'), + camera.get('right_camera_frame_id')) + elif camera.get('camera_type') == 'mono': + self.camera_dict[camera_name] = MonoCameraInfo(self, camera_name, camera.get('camera_info_sub_topic'), camera.get('camera_frame_id')) + else: + self.get_logger().error('Invalid camera type: %s' % camera.get('type')) + + def load_config(self, file): + try: + with open(file, 'r') as file: + config = yaml.safe_load(file) + return config + except FileNotFoundError: + self.get_logger().error(f"Error: The file '{file}' does not exist.") + raise + except yaml.YAMLError as e: + self.get_logger().error(f"Error parsing YAML file '{file}': {e}") + raise + + def check_tf(self): + if not self.tfs_initialized: + for camera in self.camera_dict.values(): + if isinstance(camera, StereoCameraInfo): + try: + camera.left_camera_transform_to_baselink = self.tf_buffer.lookup_transform(camera.left_camera_frame_id, camera.base_link_frame_id, rclpy.time.Time()) + camera.right_camera_transform_to_baselink = self.tf_buffer.lookup_transform(camera.right_camera_frame_id, camera.base_link_frame_id, rclpy.time.Time()) + left_cam_location = np.array([camera.left_camera_transform_to_baselink.transform.translation.x, camera.left_camera_transform_to_baselink.transform.translation.y, camera.left_camera_transform_to_baselink.transform.translation.z]) + right_cam_location = np.array([camera.right_camera_transform_to_baselink.transform.translation.x, camera.right_camera_transform_to_baselink.transform.translation.y, camera.right_camera_transform_to_baselink.transform.translation.z]) + camera.baseline = np.linalg.norm(left_cam_location - right_cam_location) + camera.tf_initialized = True + except Exception as e: + self.get_logger().error(f"Error looking up transform: {e}") + elif isinstance(camera, MonoCameraInfo): + try: + camera.camera_transform_to_baselink = self.tf_buffer.lookup_transform(camera.camera_frame_id, camera.base_link_frame_id, rclpy.time.Time()) + except Exception as e: + self.get_logger().error(f"Error looking up transform: {e}") + + if all(camera.tf_initialized for camera in self.camera_dict.values()): + self.tfs_initialized = True + self.get_logger().info('Camera transforms initialized') + + if not self.info_initialized: + if all(camera.info_initialized for camera in self.camera_dict.values()): + self.info_initialized = True + self.get_logger().info('Camera parameters initialized') + + if self.tfs_initialized and self.info_initialized and not self.server_initialized: + self.camera_params_srv = self.create_service(GetCameraParams, 'get_camera_params', self.get_camera_params) + self.server_initialized = True + self.get_logger().info('Camera parameter server initialized') + + + def get_camera_params(self, request, response): + # Check if camera parameters are initialized + if self.tfs_initialized and self.info_initialized: + camera_name_list = request.camera_names + camera_type_list = request.camera_types + if len(camera_name_list) != len(camera_type_list): + self.get_logger().error('Camera name and type list length mismatch') + response.success = False + return response + for i, camera_name in enumerate(camera_name_list): + camera_type = camera_type_list[i] + response = self.get_camera_params_single(response, camera_name, camera_type) + return response + else: + self.get_logger().error('Camera parameters not initialized') + response.success = False + return response + + def get_camera_params_single(self, response, incoming_camera_name, incoming_camera_type): + if incoming_camera_name in self.camera_dict: + camera = self.camera_dict[incoming_camera_name] + if camera.camera_type == incoming_camera_type: + if isinstance(camera, StereoCameraInfo): + response.camera_frame_ids.append(camera.left_camera_frame_id) + response.camera_infos.append(camera.left_camera_info) + response.camera_frame_ids.append(camera.right_camera_frame_id) + response.camera_infos.append(camera.right_camera_info) + response.baselines.append(camera.baseline) + response.success = True + elif isinstance(camera, MonoCameraInfo): + response.camera_info = camera.camera_info + response.camera_transform_to_baselink = camera.camera_transform_to_baselink + response.success = True + else: + self.get_logger().error('Camera type mismatch: %s' % incoming_camera_name) + response.success = False + return response + else: + self.get_logger().error('Camera not found: %s' % incoming_camera_name) + return response + + + +def main(args=None): + rclpy.init(args=args) + + camera_param_server = CameraParamServer() + + rclpy.spin(camera_param_server) + + camera_param_server.destroy_node() + rclpy.shutdown() + diff --git a/robot/ros_ws/src/autonomy/1_sensors/camera_param_server/config/camera_config.yaml b/robot/ros_ws/src/autonomy/1_sensors/camera_param_server/config/camera_config.yaml new file mode 100644 index 00000000..629c4e9e --- /dev/null +++ b/robot/ros_ws/src/autonomy/1_sensors/camera_param_server/config/camera_config.yaml @@ -0,0 +1,7 @@ +base_link_frame_id: "base_link" +camera_list: + - camera_name: "front_stereo" + camera_type: "stereo" + camera_info_sub_topic: "camera_info" + left_camera_frame_id: "left_camera" # not sure if this is needed because it should be standardized + right_camera_frame_id: "right_camera" diff --git a/robot/ros_ws/src/autonomy/1_sensors/camera_param_server/launch/camera_param_server.launch.xml b/robot/ros_ws/src/autonomy/1_sensors/camera_param_server/launch/camera_param_server.launch.xml new file mode 100644 index 00000000..288a50f0 --- /dev/null +++ b/robot/ros_ws/src/autonomy/1_sensors/camera_param_server/launch/camera_param_server.launch.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/robot/ros_ws/src/autonomy/1_sensors/camera_param_server/package.xml b/robot/ros_ws/src/autonomy/1_sensors/camera_param_server/package.xml new file mode 100644 index 00000000..f46cc605 --- /dev/null +++ b/robot/ros_ws/src/autonomy/1_sensors/camera_param_server/package.xml @@ -0,0 +1,20 @@ + + + + camera_param_server + 0.0.0 + TODO: Package description + root + TODO: License declaration + + sensor_interfaces + + ament_copyright + ament_flake8 + ament_pep257 + python3-pytest + + + ament_python + + diff --git a/robot/ros_ws/src/autonomy/1_sensors/camera_param_server/resource/camera_param_server b/robot/ros_ws/src/autonomy/1_sensors/camera_param_server/resource/camera_param_server new file mode 100644 index 00000000..e69de29b diff --git a/robot/ros_ws/src/autonomy/1_sensors/camera_param_server/setup.cfg b/robot/ros_ws/src/autonomy/1_sensors/camera_param_server/setup.cfg new file mode 100644 index 00000000..2e62fcd7 --- /dev/null +++ b/robot/ros_ws/src/autonomy/1_sensors/camera_param_server/setup.cfg @@ -0,0 +1,4 @@ +[develop] +script_dir=$base/lib/camera_param_server +[install] +install_scripts=$base/lib/camera_param_server diff --git a/robot/ros_ws/src/autonomy/1_sensors/camera_param_server/setup.py b/robot/ros_ws/src/autonomy/1_sensors/camera_param_server/setup.py new file mode 100644 index 00000000..bad637f9 --- /dev/null +++ b/robot/ros_ws/src/autonomy/1_sensors/camera_param_server/setup.py @@ -0,0 +1,28 @@ +from setuptools import find_packages, setup + +package_name = 'camera_param_server' + +setup( + name=package_name, + version='0.0.0', + packages=find_packages(exclude=['test']), + data_files=[ + ('share/ament_index/resource_index/packages', + ['resource/' + package_name]), + ('share/' + package_name, ['package.xml']), + ('share/' + package_name + '/launch', ['launch/camera_param_server.launch.xml']), + ('share/' + package_name + '/config', ['config/camera_config.yaml']), + ], + install_requires=['setuptools'], + zip_safe=True, + maintainer='root', + maintainer_email='root@todo.todo', + description='TODO: Package description', + license='TODO: License declaration', + tests_require=['pytest'], + entry_points={ + 'console_scripts': [ + 'camera_param_server = camera_param_server.camera_param_server:main', + ], + }, +) diff --git a/robot/ros_ws/src/autonomy/1_sensors/camera_param_server/test/test_copyright.py b/robot/ros_ws/src/autonomy/1_sensors/camera_param_server/test/test_copyright.py new file mode 100644 index 00000000..97a39196 --- /dev/null +++ b/robot/ros_ws/src/autonomy/1_sensors/camera_param_server/test/test_copyright.py @@ -0,0 +1,25 @@ +# Copyright 2015 Open Source Robotics Foundation, Inc. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +from ament_copyright.main import main +import pytest + + +# Remove the `skip` decorator once the source file(s) have a copyright header +@pytest.mark.skip(reason='No copyright header has been placed in the generated source file.') +@pytest.mark.copyright +@pytest.mark.linter +def test_copyright(): + rc = main(argv=['.', 'test']) + assert rc == 0, 'Found errors' diff --git a/robot/ros_ws/src/autonomy/1_sensors/camera_param_server/test/test_flake8.py b/robot/ros_ws/src/autonomy/1_sensors/camera_param_server/test/test_flake8.py new file mode 100644 index 00000000..27ee1078 --- /dev/null +++ b/robot/ros_ws/src/autonomy/1_sensors/camera_param_server/test/test_flake8.py @@ -0,0 +1,25 @@ +# Copyright 2017 Open Source Robotics Foundation, Inc. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +from ament_flake8.main import main_with_errors +import pytest + + +@pytest.mark.flake8 +@pytest.mark.linter +def test_flake8(): + rc, errors = main_with_errors(argv=[]) + assert rc == 0, \ + 'Found %d code style errors / warnings:\n' % len(errors) + \ + '\n'.join(errors) diff --git a/robot/ros_ws/src/autonomy/1_sensors/camera_param_server/test/test_pep257.py b/robot/ros_ws/src/autonomy/1_sensors/camera_param_server/test/test_pep257.py new file mode 100644 index 00000000..b234a384 --- /dev/null +++ b/robot/ros_ws/src/autonomy/1_sensors/camera_param_server/test/test_pep257.py @@ -0,0 +1,23 @@ +# Copyright 2015 Open Source Robotics Foundation, Inc. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +from ament_pep257.main import main +import pytest + + +@pytest.mark.linter +@pytest.mark.pep257 +def test_pep257(): + rc = main(argv=['.', 'test']) + assert rc == 0, 'Found code style errors / warnings' diff --git a/robot/ros_ws/src/autonomy/1_sensors/sensor_interfaces/CMakeLists.txt b/robot/ros_ws/src/autonomy/1_sensors/sensor_interfaces/CMakeLists.txt new file mode 100644 index 00000000..ea4cbdf6 --- /dev/null +++ b/robot/ros_ws/src/autonomy/1_sensors/sensor_interfaces/CMakeLists.txt @@ -0,0 +1,20 @@ +cmake_minimum_required(VERSION 3.5) +project(sensor_interfaces) +# Default to C++14 +if(NOT CMAKE_CXX_STANDARD) + set(CMAKE_CXX_STANDARD 14) +endif() +if(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang") + add_compile_options(-Wall -Wextra -Wpedantic) +endif() +find_package(ament_cmake REQUIRED) +find_package(rosidl_default_generators REQUIRED) +find_package(sensor_msgs REQUIRED) + +rosidl_generate_interfaces(${PROJECT_NAME} + "srv/GetCameraParams.srv" + DEPENDENCIES sensor_msgs + ) + +ament_export_dependencies(rosidl_default_runtime) +ament_package() \ No newline at end of file diff --git a/robot/ros_ws/src/autonomy/1_sensors/sensor_interfaces/package.xml b/robot/ros_ws/src/autonomy/1_sensors/sensor_interfaces/package.xml new file mode 100644 index 00000000..c3df3349 --- /dev/null +++ b/robot/ros_ws/src/autonomy/1_sensors/sensor_interfaces/package.xml @@ -0,0 +1,24 @@ + + + + sensor_interfaces + 0.0.0 + TODO: Package description + user + TODO: License declaration + + ament_cmake + rosidl_default_generators + + rosidl_default_runtime + + rosidl_interface_packages + ament_lint_auto + ament_lint_common + + sensor_msgs + + + ament_cmake + + diff --git a/robot/ros_ws/src/autonomy/1_sensors/sensor_interfaces/srv/GetCameraParams.srv b/robot/ros_ws/src/autonomy/1_sensors/sensor_interfaces/srv/GetCameraParams.srv new file mode 100644 index 00000000..2972d8d8 --- /dev/null +++ b/robot/ros_ws/src/autonomy/1_sensors/sensor_interfaces/srv/GetCameraParams.srv @@ -0,0 +1,7 @@ +string[] camera_names +string[] camera_types +--- +bool success +string[] camera_frame_ids +sensor_msgs/CameraInfo[] camera_infos +float64[] baselines diff --git a/robot/ros_ws/src/autonomy/1_sensors/sensors_bringup/launch/sensors.launch.xml b/robot/ros_ws/src/autonomy/1_sensors/sensors_bringup/launch/sensors.launch.xml index b5bebe8e..d5976207 100644 --- a/robot/ros_ws/src/autonomy/1_sensors/sensors_bringup/launch/sensors.launch.xml +++ b/robot/ros_ws/src/autonomy/1_sensors/sensors_bringup/launch/sensors.launch.xml @@ -1,4 +1,7 @@ - + + + + \ No newline at end of file diff --git a/robot/ros_ws/src/autonomy/2_perception/macvo/README.md b/robot/ros_ws/src/autonomy/2_perception/macvo/README.md new file mode 100644 index 00000000..f9b1db47 --- /dev/null +++ b/robot/ros_ws/src/autonomy/2_perception/macvo/README.md @@ -0,0 +1,51 @@ + +# MAC-VO + +## Summary + +Currently, the state estimation of our robot relies on [MAC-VO](https://mac-vo.github.io/), a learning-based stereo visual odometry algorithm. This is purely camera based, and does not rely on additional sensors. On initialization, the node will load the model weights, and then allocate the required memory to store the model on first inference. This process may take some time. Once this process is complete, the inference time should be able to run at around 3 Hz. Documentation on the MAC-VO model can be found [here](https://mac-vo.github.io/wiki/category/extend-mac-vo/) + +This node is also setup to retrieve camera info on node initialization. This includes camera intrinsics and baseline of the desired camera, and is setup using a service call to the camera parameter server. + +The output from this node should give the pose estimates of the model, the feature points in 3D space used to estimate the pose, and a visualization image of the points projected onto the RGB image. **The pose is currently given in the perspective of the left camera frame.** + +## Configuration + +The wrapper that is currently used for interfacing with the non-ROS MAC-VO logic is modified from the one provided [here](https://github.com/MAC-VO/MAC-VO-ROS2). For our purposes, we wanted modularity in interfacing with the node, so we now have two configuration files: + +- `interface_config.yaml`: This file specifies the desired camera name, the subscriber and publisher topics, and the size of the image when being fed through inference. This was designed specifically for Airstack +- `model_config.yaml`: This file is sourced from the official MAC-VO ROS wrapper and defines the structure for creating the MAC-VO model. It also specifies the location of the model weights, currently stored at /root/model_weights/MACVO_FrontendCov.pth within the Docker container. + +## Parameters + +Below are the parameters for the `interface_config.yaml`. To find out more about the parameters for the `model_config.yaml`, please consult the [MAC-VO Documentation](https://mac-vo.github.io/wiki/category/extend-mac-vo/). + +|
Parameter
| Description +|----------------------------|--------------------------------------------------------------- +| `camera_name` | The name of the camera that the visual odometry should process from| +| `camera_param_server_client_topic` | Topic name for the camera parameter server| +| `imageL_sub_topic` | Topic name for the left stereo image, appended with the camera name| +| `imageR_sub_topic` | Topic name for the right stereo image, appended with the camera name| +| `pose_pub_topic` | Topic name for the pose estimate output from the MAC-VO model| +| `point_pub_topic` | Topic name for the point cloud of feature points with covariances used to estimate pose | +| `img_pub_topic` | Topic name for the visualization of the feature points over the rgb for debugging | +| `inference_dim_u` | The width of the images fed into the MAC-VO model, which affects inference rate | +| `inference_dim_v` | The height of the images fed into the MAC-VO model, which affects inference rate | + +## Services +|
Parameter
| Type | Description +|----------------------------|----------------------------------------|-----------------------| +| `~/get_camera_params` | sensor_interfaces/GetCameraParams | A service to get info about the desired camera| + +## Subscriptions +|
Parameter
| Type | Description +|----------------------------|----------------------------------------|-----------------------| +| `~/left/image_rect` | sensor_msgs/Image | The left RGB image from the stereo camera | +| `~right/image_rect` | sensor_msgs/Image | The right RGB image from the stereo camera| + +## Publications +|
Parameter
| Type | Description +|----------------------------|----------------------------------------|-----------------------| +| `~/visual_odometry_pose` | nav_msgs/Path | Outputs the pose estimate output from the MAC-VO model.| +| `~/visual_odometry_points` | nav_msgs/Path | Outputs the point cloud of feature points with covariances used to estimate pose. | +| `~/visual_odometry_img` | nav_msgs/Path | Outputs the visualization of the feature points over the rgb for debugging. | \ No newline at end of file diff --git a/robot/ros_ws/src/autonomy/2_perception/macvo/config/interface_config.yaml b/robot/ros_ws/src/autonomy/2_perception/macvo/config/interface_config.yaml new file mode 100644 index 00000000..c1ff163f --- /dev/null +++ b/robot/ros_ws/src/autonomy/2_perception/macvo/config/interface_config.yaml @@ -0,0 +1,11 @@ +/**: + ros__parameters: + camera_name: "front_stereo" + camera_param_server_client_topic: "sensors/get_camera_params" + imageL_sub_topic: "left/image_rect" + imageR_sub_topic: "right/image_rect" + pose_pub_topic: "visual_odometry_pose" + point_pub_topic: "visual_odometry_points" + img_pub_topic: "visual_odometry_img" + inference_dim_u: 450 + inference_dim_v: 450 diff --git a/robot/ros_ws/src/autonomy/2_perception/macvo/config/model_config.yaml b/robot/ros_ws/src/autonomy/2_perception/macvo/config/model_config.yaml new file mode 100644 index 00000000..453f38f4 --- /dev/null +++ b/robot/ros_ws/src/autonomy/2_perception/macvo/config/model_config.yaml @@ -0,0 +1,83 @@ +Common: + # Some configurations are shared across multiple modules in Odometry, so I write them here. + device: &device cuda + max_depth: &max_depth auto + +Odometry: + name: MACVO + args: + # Device directive to the VO system + # NOTE: the system may not follow this device config strictly since some module + # e.g. those rely on PWC-Net, only support running on cuda device. + device: *device + edgewidth: 32 + num_point: 200 # Upper bound of KPs in each frame + + # Match covariance for keypoint on first observation (sub-pixel uncertainty + # caused by the quantized pixel) + match_cov_default: 0.25 + + # Profiling the system using torch, generate chrome json trace file. + profile: false + + cov: + obs: + type: MatchCovariance + args: + device: *device + kernel_size: 31 + match_cov_default: 0.25 + min_depth_cov: 0.05 + min_flow_cov: 0.25 + + keypoint: + type: CovAwareSelector + args: + device: *device + kernel_size: 7 + mask_width: 32 + max_depth: *max_depth + max_depth_cov: 250.0 + max_match_cov: 100.0 + + frontend: + type: FlowFormerCovFrontend + args: + device: *device + weight: /root/model_weights/MACVO_FrontendCov.pth + use_jit: true + enforce_positive_disparity: false + dtype: fp32 + + motion: + type: StaticMotionModel + args: + + + outlier: + type: FilterCompose + args: + filter_args: + - type: CovarianceSanityFilter + args: + - type: SimpleDepthFilter + args: + min_depth: 0.05 + max_depth: *max_depth + - type: LikelyFrontOfCamFilter + args: + + postprocess: + type: DisplacementInterpolate + args: + + keyframe: + type: AllKeyframe + args: + + optimizer: + type: PyPoseTwoFramePGO + args: + device: cpu + vectorize: true + parallel: true \ No newline at end of file diff --git a/robot/ros_ws/src/autonomy/2_perception/macvo/config/rviz_macvo.rviz b/robot/ros_ws/src/autonomy/2_perception/macvo/config/rviz_macvo.rviz new file mode 100644 index 00000000..5c905f3d --- /dev/null +++ b/robot/ros_ws/src/autonomy/2_perception/macvo/config/rviz_macvo.rviz @@ -0,0 +1,204 @@ +Panels: + - Class: rviz_common/Displays + Help Height: 78 + Name: Displays + Property Tree Widget: + Expanded: + - /Global Options1 + - /Status1 + - /PointCloud1 + Splitter Ratio: 0.5 + Tree Height: 725 + - Class: rviz_common/Selection + Name: Selection + - Class: rviz_common/Tool Properties + Expanded: + - /2D Goal Pose1 + - /Publish Point1 + Name: Tool Properties + Splitter Ratio: 0.5886790156364441 + - Class: rviz_common/Views + Expanded: + - /Current View1 + Name: Views + Splitter Ratio: 0.5 + - Class: rviz_common/Time + Experimental: false + Name: Time + SyncMode: 0 + SyncSource: "" +Visualization Manager: + Class: "" + Displays: + - Alpha: 0.5 + Cell Size: 1 + Class: rviz_default_plugins/Grid + Color: 160; 160; 164 + Enabled: true + Line Style: + Line Width: 0.029999999329447746 + Value: Lines + Name: Grid + Normal Cell Count: 0 + Offset: + X: 0 + Y: 0 + Z: 0 + Plane: XY + Plane Cell Count: 10 + Reference Frame: + Value: true + - Alpha: 1 + Axes Length: 1 + Axes Radius: 0.10000000149011612 + Class: rviz_default_plugins/Pose + Color: 255; 25; 0 + Enabled: true + Head Length: 0.30000001192092896 + Head Radius: 0.10000000149011612 + Name: Pose + Shaft Length: 1 + Shaft Radius: 0.05000000074505806 + Shape: Arrow + Topic: + Depth: 5 + Durability Policy: Volatile + Filter size: 10 + History Policy: Keep Last + Reliability Policy: Reliable + Value: /robot_1/perception/visual_odometry_pose + Value: true + - Alpha: 1 + Autocompute Intensity Bounds: true + Autocompute Value Bounds: + Max Value: 4.518574237823486 + Min Value: -0.5837738513946533 + Value: true + Axis: Z + Channel Name: intensity + Class: rviz_default_plugins/PointCloud + Color: 255; 255; 255 + Color Transformer: AxisColor + Decay Time: 0 + Enabled: true + Invert Rainbow: false + Max Color: 255; 255; 255 + Max Intensity: 4096 + Min Color: 0; 0; 0 + Min Intensity: 0 + Name: PointCloud + Position Transformer: XYZ + Selectable: true + Size (Pixels): 3 + Size (m): 0.5 + Style: Points + Topic: + Depth: 5 + Durability Policy: Volatile + Filter size: 10 + History Policy: Keep Last + Reliability Policy: Reliable + Value: /robot_1/perception/visual_odometry_points + Use Fixed Frame: true + Use rainbow: true + Value: true + - Class: rviz_default_plugins/Image + Enabled: true + Max Value: 1 + Median window: 5 + Min Value: 0 + Name: Image + Normalize Range: true + Topic: + Depth: 5 + Durability Policy: Volatile + History Policy: Keep Last + Reliability Policy: Reliable + Value: /robot_1/perception/visual_odometry_img + Value: true + Enabled: true + Global Options: + Background Color: 48; 48; 48 + Fixed Frame: left_camera + Frame Rate: 30 + Name: root + Tools: + - Class: rviz_default_plugins/Interact + Hide Inactive Objects: true + - Class: rviz_default_plugins/MoveCamera + - Class: rviz_default_plugins/Select + - Class: rviz_default_plugins/FocusCamera + - Class: rviz_default_plugins/Measure + Line color: 128; 128; 0 + - Class: rviz_default_plugins/SetInitialPose + Covariance x: 0.25 + Covariance y: 0.25 + Covariance yaw: 0.06853891909122467 + Topic: + Depth: 5 + Durability Policy: Volatile + History Policy: Keep Last + Reliability Policy: Reliable + Value: /initialpose + - Class: rviz_default_plugins/SetGoal + Topic: + Depth: 5 + Durability Policy: Volatile + History Policy: Keep Last + Reliability Policy: Reliable + Value: /goal_pose + - Class: rviz_default_plugins/PublishPoint + Single click: true + Topic: + Depth: 5 + Durability Policy: Volatile + History Policy: Keep Last + Reliability Policy: Reliable + Value: /clicked_point + Transformation: + Current: + Class: rviz_default_plugins/TF + Value: true + Views: + Current: + Class: rviz_default_plugins/Orbit + Distance: 24.403091430664062 + Enable Stereo Rendering: + Stereo Eye Separation: 0.05999999865889549 + Stereo Focal Distance: 1 + Swap Stereo Eyes: false + Value: false + Focal Point: + X: 0 + Y: 0 + Z: 0 + Focal Shape Fixed Size: true + Focal Shape Size: 0.05000000074505806 + Invert Z Axis: false + Name: Current View + Near Clip Distance: 0.009999999776482582 + Pitch: 0.3003981113433838 + Target Frame: + Value: Orbit (rviz) + Yaw: 2.8553879261016846 + Saved: ~ +Window Geometry: + Displays: + collapsed: false + Height: 1016 + Hide Left Dock: false + Hide Right Dock: false + Image: + collapsed: false + QMainWindow State: 000000ff00000000fd0000000400000000000001560000035efc0200000008fb0000001200530065006c0065006300740069006f006e00000001e10000009b0000005c00fffffffb0000001e0054006f006f006c002000500072006f007000650072007400690065007302000001ed000001df00000185000000a3fb000000120056006900650077007300200054006f006f02000001df000002110000018500000122fb000000200054006f006f006c002000500072006f0070006500720074006900650073003203000002880000011d000002210000017afc0000003b0000035e000000c700fffffffa000000010100000002fb0000000a0049006d0061006700650000000000ffffffff0000000000000000fb000000100044006900730070006c0061007900730100000000000001560000015600fffffffb0000002000730065006c0065006300740069006f006e00200062007500660066006500720200000138000000aa0000023a00000294fb00000014005700690064006500530074006500720065006f02000000e6000000d2000003ee0000030bfb0000000c004b0069006e0065006300740200000186000001060000030c0000026100000001000002760000035efc0200000005fb0000000a0049006d006100670065010000003b0000035e0000002800fffffffb0000000a0049006d006100670065010000003b000003790000000000000000fb0000001e0054006f006f006c002000500072006f00700065007200740069006500730100000041000000780000000000000000fb0000000a00560069006500770073000000003b00000379000000a000fffffffb0000001200530065006c0065006300740069006f006e010000025a000000b200000000000000000000000200000490000000a9fc0100000001fb0000000a00560069006500770073030000004e00000080000002e100000197000000030000073a0000003efc0100000002fb0000000800540069006d006501000000000000073a0000025300fffffffb0000000800540069006d00650100000000000004500000000000000000000003620000035e00000004000000040000000800000008fc0000000100000002000000010000000a0054006f006f006c00730100000000ffffffff0000000000000000 + Selection: + collapsed: false + Time: + collapsed: false + Tool Properties: + collapsed: false + Views: + collapsed: false + Width: 1850 + X: 70 + Y: 27 diff --git a/robot/ros_ws/src/autonomy/2_perception/macvo/launch/macvo.launch.xml b/robot/ros_ws/src/autonomy/2_perception/macvo/launch/macvo.launch.xml new file mode 100644 index 00000000..287b1193 --- /dev/null +++ b/robot/ros_ws/src/autonomy/2_perception/macvo/launch/macvo.launch.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/robot/ros_ws/src/autonomy/2_perception/macvo/macvo/MessageFactory.py b/robot/ros_ws/src/autonomy/2_perception/macvo/macvo/MessageFactory.py new file mode 100644 index 00000000..d0c514d3 --- /dev/null +++ b/robot/ros_ws/src/autonomy/2_perception/macvo/macvo/MessageFactory.py @@ -0,0 +1,175 @@ +import std_msgs.msg as std_msgs +import sensor_msgs.msg as sensor_msgs +import geometry_msgs.msg as geometry_msgs +from builtin_interfaces.msg import Time + +import sys +import torch +import pypose as pp +import numpy as np + +_name_to_dtypes = { + "rgb8": (np.uint8, 3), + "rgba8": (np.uint8, 4), + "rgb16": (np.uint16, 3), + "rgba16": (np.uint16, 4), + "bgr8": (np.uint8, 3), + "bgra8": (np.uint8, 4), + "bgr16": (np.uint16, 3), + "bgra16": (np.uint16, 4), + "mono8": (np.uint8, 1), + "mono16": (np.uint16, 1), + + # for bayer image (based on cv_bridge.cpp) + "bayer_rggb8": (np.uint8, 1), + "bayer_bggr8": (np.uint8, 1), + "bayer_gbrg8": (np.uint8, 1), + "bayer_grbg8": (np.uint8, 1), + "bayer_rggb16": (np.uint16, 1), + "bayer_bggr16": (np.uint16, 1), + "bayer_gbrg16": (np.uint16, 1), + "bayer_grbg16": (np.uint16, 1), + + # OpenCV CvMat types + "8UC1": (np.uint8, 1), + "8UC2": (np.uint8, 2), + "8UC3": (np.uint8, 3), + "8UC4": (np.uint8, 4), + "8SC1": (np.int8, 1), + "8SC2": (np.int8, 2), + "8SC3": (np.int8, 3), + "8SC4": (np.int8, 4), + "16UC1": (np.uint16, 1), + "16UC2": (np.uint16, 2), + "16UC3": (np.uint16, 3), + "16UC4": (np.uint16, 4), + "16SC1": (np.int16, 1), + "16SC2": (np.int16, 2), + "16SC3": (np.int16, 3), + "16SC4": (np.int16, 4), + "32SC1": (np.int32, 1), + "32SC2": (np.int32, 2), + "32SC3": (np.int32, 3), + "32SC4": (np.int32, 4), + "32FC1": (np.float32, 1), + "32FC2": (np.float32, 2), + "32FC3": (np.float32, 3), + "32FC4": (np.float32, 4), + "64FC1": (np.float64, 1), + "64FC2": (np.float64, 2), + "64FC3": (np.float64, 3), + "64FC4": (np.float64, 4) +} + + +def to_stamped_pose(pose: pp.LieTensor | torch.Tensor, frame_id: str, time: Time) -> geometry_msgs.PoseStamped: + pose_ = pose.detach().cpu() + out_msg = geometry_msgs.PoseStamped() + out_msg.header = std_msgs.Header() + out_msg.header.stamp = time + out_msg.header.frame_id = frame_id + + out_msg.pose.position.x = pose_[0].item() + out_msg.pose.position.y = pose_[1].item() + out_msg.pose.position.z = pose_[2].item() + + out_msg.pose.orientation.x = pose_[3].item() + out_msg.pose.orientation.y = pose_[4].item() + out_msg.pose.orientation.z = pose_[5].item() + out_msg.pose.orientation.w = pose_[6].item() + return out_msg + + +def from_image(msg: sensor_msgs.Image) -> np.ndarray: + if msg.encoding not in _name_to_dtypes: + raise KeyError(f"Unsupported image encoding {msg.encoding}") + + dtype_name, channel = _name_to_dtypes[msg.encoding] + dtype = np.dtype(dtype_name) + dtype = dtype.newbyteorder('>' if msg.is_bigendian else '<') + shape = (msg.height, msg.width, channel) + + data = np.frombuffer(msg.data, dtype=dtype).reshape(shape) + data.strides = (msg.step, dtype.itemsize * channel, dtype.itemsize) + return data + + +def to_image(arr: np.ndarray, frame_id: str, time: Time, encoding: str = "bgra8") -> sensor_msgs.Image: + if not encoding in _name_to_dtypes: + raise TypeError('Unrecognized encoding {}'.format(encoding)) + + im = sensor_msgs.Image(encoding=encoding) + + # extract width, height, and channels + dtype_class, exp_channels = _name_to_dtypes[encoding] + dtype = np.dtype(dtype_class) + if len(arr.shape) == 2: + im.height, im.width, channels = arr.shape + (1,) + elif len(arr.shape) == 3: + im.height, im.width, channels = arr.shape + else: + raise TypeError("Array must be two or three dimensional") + + # check type and channels + if exp_channels != channels: + raise TypeError("Array has {} channels, {} requires {}".format( + channels, encoding, exp_channels + )) + if dtype_class != arr.dtype.type: + raise TypeError("Array is {}, {} requires {}".format( + arr.dtype.type, encoding, dtype_class + )) + + # make the array contiguous in memory, as mostly required by the format + contig = np.ascontiguousarray(arr) + im.data = contig.tobytes() + im.step = contig.strides[0] + im.header.stamp = time + im.header.frame_id = frame_id + im.is_bigendian = ( + arr.dtype.byteorder == '>' or + arr.dtype.byteorder == '=' and sys.byteorder == 'big' + ) + + return im + + +def to_pointcloud(position: torch.Tensor, keypoints: torch.Tensor, colors: torch.Tensor, frame_id: str, time: Time) -> sensor_msgs.PointCloud: + """ + position should be a Nx3 pytorch Tensor (dtype=float) + keypoints should be a Nx2 pytorch Tensor (dtype=float) + """ + assert position.size(0) == keypoints.size(0) + + out_msg = sensor_msgs.PointCloud() + position_ = position.detach().cpu().numpy() + keypoints_ = keypoints.detach().cpu().numpy() + colors_ = colors.detach().cpu().numpy() + + out_msg.header = std_msgs.Header() + out_msg.header.stamp = time + out_msg.header.frame_id = frame_id + + out_msg.points = [ + geometry_msgs.Point32(x=float(position_[pt_idx, 0]), y=float(position_[pt_idx, 1]), z=float(position_[pt_idx, 2])) + for pt_idx in range(position.size(0)) + ] + out_msg.channels = [ + sensor_msgs.ChannelFloat32( + name="kp_u", values=keypoints_[..., 0].tolist() + ), + sensor_msgs.ChannelFloat32( + name="kp_v", values=keypoints_[..., 1].tolist() + ), + sensor_msgs.ChannelFloat32( + name="r" , values=colors_[..., 0].tolist() + ), + sensor_msgs.ChannelFloat32( + name="g" , values=colors_[..., 1].tolist() + ), + sensor_msgs.ChannelFloat32( + name="b" , values=colors_[..., 2].tolist() + ) + ] + + return out_msg \ No newline at end of file diff --git a/robot/ros_ws/src/autonomy/2_perception/macvo/macvo/__init__.py b/robot/ros_ws/src/autonomy/2_perception/macvo/macvo/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/robot/ros_ws/src/autonomy/2_perception/macvo/macvo/macvo.py b/robot/ros_ws/src/autonomy/2_perception/macvo/macvo/macvo.py new file mode 100644 index 00000000..790c9146 --- /dev/null +++ b/robot/ros_ws/src/autonomy/2_perception/macvo/macvo/macvo.py @@ -0,0 +1,262 @@ +import rclpy +import torch +import numpy as np +import cv2 +from cv_bridge import CvBridge + +from rclpy.node import Node +from sensor_msgs.msg import Image, PointCloud +from geometry_msgs.msg import PoseStamped +from message_filters import ApproximateTimeSynchronizer, Subscriber + +from pathlib import Path +from typing import TYPE_CHECKING +from torchvision.transforms.functional import center_crop, resize +import os, sys +import argparse + +from .MessageFactory import to_stamped_pose, from_image, to_pointcloud, to_image +from sensor_interfaces.srv import GetCameraParams + +# Add the src directory to the Python path +src_path = os.path.abspath(os.path.join(os.path.dirname(__file__), 'src')) +sys.path.insert(0, src_path) +if TYPE_CHECKING: + # To make static type checker happy : ) + from src.Odometry.MACVO import MACVO + from src.DataLoader import SourceDataFrame, MetaInfo + from src.Utility.Config import load_config +else: + from Odometry.MACVO import MACVO + from DataLoader import SourceDataFrame, MetaInfo + from Utility.Config import load_config + +class MACVONode(Node): + def __init__(self): + super().__init__("macvo_node") + + self.bridge = None + self.time = None + self.prev_time = None + self.frame = None + self.camera_info = None + self.baseline = None + self.prev_frame = None + self.odometry = None + + # Declare subscriptions and publishers ---------------- + self.declare_parameter("imageL_sub_topic", rclpy.Parameter.Type.STRING) + self.declare_parameter("imageR_sub_topic", rclpy.Parameter.Type.STRING) + imageL_topic = self.get_parameter("imageL_sub_topic").get_parameter_value().string_value + imageR_topic = self.get_parameter("imageR_sub_topic").get_parameter_value().string_value + self.imageL_sub = Subscriber(self, Image, imageL_topic, qos_profile=1) + self.imageR_sub = Subscriber(self, Image, imageR_topic, qos_profile=1) + + self.sync_stereo = ApproximateTimeSynchronizer( + [self.imageL_sub, self.imageR_sub], queue_size=2, slop=0.1 + ) + self.sync_stereo.registerCallback(self.receive_frame) + + self.declare_parameter("pose_pub_topic", rclpy.Parameter.Type.STRING) + pose_topic = self.get_parameter("pose_pub_topic").get_parameter_value().string_value + self.pose_pipe = self.create_publisher(PoseStamped, pose_topic, qos_profile=1) + + self.declare_parameter("point_pub_topic", rclpy.Parameter.Type.STRING) + point_topic = self.get_parameter("point_pub_topic").get_parameter_value().string_value + if point_topic is not None: + self.point_pipe = self.create_publisher(PointCloud, point_topic, qos_profile=1) + else: + self.point_pipe = None + + self.declare_parameter("img_pub_topic", rclpy.Parameter.Type.STRING) + img_stream = self.get_parameter("img_pub_topic").get_parameter_value().string_value + if img_stream is not None: + self.img_pipes = self.create_publisher(Image, img_stream, qos_profile=1) + else: + self.img_pipes = None + + self.frame = "map" + + # Load the MACVO model ------------------------------------ + self.declare_parameter("camera_config", rclpy.Parameter.Type.STRING) + camera_config = self.get_parameter("camera_config").get_parameter_value().string_value + self.get_logger().info(f"Loading macvo model from {camera_config}, this might take a while...") + cfg, _ = load_config(Path(camera_config)) + self.frame_idx = 0 + self.odometry = MACVO.from_config(cfg) + self.declare_parameter("camera_name", rclpy.Parameter.Type.STRING) + self.camera_name = self.get_parameter("camera_name").get_parameter_value().string_value + + self.odometry.register_on_optimize_finish(self.publish_latest_pose) + self.odometry.register_on_optimize_finish(self.publish_latest_points) + # self.odometry.register_on_optimize_finish(self.publish_latest_stereo) + self.odometry.register_on_optimize_finish(self.publish_latest_matches) + self.get_logger().info(f"MACVO Model loaded successfully! Initializing MACVO node ...") + + self.declare_parameter("inference_dim_u", rclpy.Parameter.Type.INTEGER) + self.declare_parameter("inference_dim_v", rclpy.Parameter.Type.INTEGER) + u_dim = self.get_parameter("inference_dim_u").get_parameter_value().integer_value + v_dim = self.get_parameter("inference_dim_v").get_parameter_value().integer_value + + self.time , self.prev_time = None, None + self.meta = None + + # get camera params from the camera param server ---------------------------------------------------------- + self.declare_parameter("camera_param_server_client_topic", rclpy.Parameter.Type.STRING) + camera_param_server_topic = self.get_parameter("camera_param_server_client_topic").get_parameter_value().string_value + self.camera_param_client = self.create_client(GetCameraParams, camera_param_server_topic) + self.get_camera_params(camera_param_server_topic) + + self.bridge = CvBridge() + self.scale_u = float(self.camera_info.width / u_dim) + self.scale_v = float(self.camera_info.height / v_dim) + + self.rot_correction_matrix = np.array([[1, 0, 0], [0, -1, 0], [0, 0, -1]]) + self.rot_correction_matrix = np.eye(3) + + # self.get_logger().info(f"scale u: {self.scale_u}, scale v: {self.scale_v}, u_dim: {u_dim}, v_dim: {v_dim}, width: {self.camera_info.width}, height: {self.camera_info.height}") + + self.get_logger().info(f"MACVO Node initialized with camera config: {camera_config}") + + def get_camera_params(self, camera_param_server_topic, client_time_out: int = 1): + while True: + while not self.camera_param_client.wait_for_service(timeout_sec=client_time_out): + self.get_logger().error(f"Service {camera_param_server_topic} not available, waiting again...") + req = GetCameraParams.Request() + req.camera_names.append(self.camera_name) + req.camera_types.append("stereo") + future = self.camera_param_client.call_async(req) + rclpy.spin_until_future_complete(self, future) + if future.result() is not None: + self.camera_info = future.result().camera_infos[0] + self.baseline = future.result().baselines[0] + self.get_logger().info(f"Received camera config from server!") + return + else: + self.get_logger().error(f"Failed to get camera params from server") + + def publish_latest_pose(self, system: MACVO): + pose = system.gmap.frames.pose[-1] + frame = self.frame + time = self.time if self.prev_time is None else self.prev_time + assert frame is not None and time is not None + + out_msg = to_stamped_pose(pose, frame, time) + + # Correction for the camera coordinate frame + out_msg.pose.position.x, out_msg.pose.position.y, out_msg.pose.position.z = np.dot(self.rot_correction_matrix, np.array([out_msg.pose.position.x, out_msg.pose.position.y, out_msg.pose.position.z])) + + self.pose_pipe.publish(out_msg) + + def publish_latest_points(self, system: MACVO): + if self.point_pipe is None: return + + latest_frame = system.gmap.frames[-1] + latest_points = system.gmap.get_frame_points(latest_frame) + latest_obs = system.gmap.get_frame_observes(latest_frame) + + frame = self.frame + time = self.time if self.prev_time is None else self.prev_time + assert frame is not None and time is not None + + out_msg = to_pointcloud( + position = latest_points.position, + keypoints = latest_obs.pixel_uv, + frame_id = frame, + colors = latest_points.color, + time = time + ) + + # Correction for the camera coordinate frame + for pt in out_msg.points: + pt.x, pt.y, pt.z = np.dot(self.rot_correction_matrix, np.array([pt.x, pt.y, pt.z])) + + self.point_pipe.publish(out_msg) + + def publish_latest_stereo(self, system: MACVO): + if self.img_pipes is None: return + + source = system.prev_frame + if source is None: return + frame = self.frame + time = self.time if self.prev_time is None else self.prev_time + assert frame is not None and time is not None + + img = (source.imageL[0].permute(1, 2, 0).numpy() * 255).copy().astype(np.uint8) + msg = self.bridge.cv2_to_imgmsg(img, encoding="bgr8") + msg.header.frame_id = frame + msg.header.stamp = time + + self.img_pipes.publish(msg) + + def publish_latest_matches(self, system: MACVO): + if self.img_pipes is None: return + + source = system.prev_frame + if source is None: return + frame = self.frame + time = self.time if self.prev_time is None else self.prev_time + assert frame is not None and time is not None + latest_frame = system.gmap.frames[-1] + + # pixels are given from the reduced image size, need to be scaled back to original size + pixels_uv = system.gmap.get_frame_observes(latest_frame).pixel_uv.int().numpy() + img = (source.imageL[0].permute(1, 2, 0).numpy() * 255).copy().astype(np.uint8) + if pixels_uv.size > 0: + for i in range(pixels_uv.shape[0]): + x, y = pixels_uv[i] + img = cv2.circle(img, (x, y), 2, (0, 255, 0), -1) + msg = self.bridge.cv2_to_imgmsg(img, encoding="bgr8") + msg.header.frame_id = frame + msg.header.stamp = time + self.img_pipes.publish(msg) + + def receive_frame(self, msg_L: Image, msg_R: Image) -> None: + if self.frame is None or self.bridge is None: + self.get_logger().error("MACVO Node not initialized yet, skipping frame") + return + + self.prev_frame, self.prev_time = self.frame, self.time + + self.frame = msg_L.header.frame_id + + self.time = msg_L.header.stamp + imageL = self.bridge.imgmsg_to_cv2(msg_L, desired_encoding="passthrough") + imageR = self.bridge.imgmsg_to_cv2(msg_R, desired_encoding="passthrough") + + camera_fx, camera_fy = self.camera_info.k[0], self.camera_info.k[4] + camera_cx, camera_cy = self.camera_info.k[2], self.camera_info.k[5] + meta = MetaInfo( + idx=self.frame_idx, + baseline=self.baseline, + width=self.camera_info.width, + height=self.camera_info.height, + K=torch.tensor([[camera_fx, 0., camera_cx], + [0., camera_fy, camera_cy], + [0., 0., 1.]]).float()) + + frame = SourceDataFrame( + meta=meta, + imageL=torch.tensor(imageL)[..., :3].float().permute(2, 0, 1).unsqueeze(0) / 255., + imageR=torch.tensor(imageR)[..., :3].float().permute(2, 0, 1).unsqueeze(0) / 255., + imu=None, + gtFlow=None, gtDepth=None, gtPose=None, flowMask=None + ).resize_image(scale_u=self.scale_u, scale_v=self.scale_v) + + start_time = self.get_clock().now() + self.odometry.run(frame) + end_time = self.get_clock().now() + # self.get_logger().info(f"Frame {self.frame_idx} processed in {end_time - start_time}") + self.frame_idx += 1 + +def main(): + rclpy.init() + node = MACVONode() + rclpy.spin(node) + + node.destroy_node() + rclpy.shutdown() + + +if __name__ == '__main__': + main() diff --git a/robot/ros_ws/src/autonomy/2_perception/macvo/macvo/src b/robot/ros_ws/src/autonomy/2_perception/macvo/macvo/src new file mode 160000 index 00000000..6c02b6ae --- /dev/null +++ b/robot/ros_ws/src/autonomy/2_perception/macvo/macvo/src @@ -0,0 +1 @@ +Subproject commit 6c02b6ae9c2817b60c65d52485ce117111dd03ab diff --git a/robot/ros_ws/src/autonomy/2_perception/macvo/package.xml b/robot/ros_ws/src/autonomy/2_perception/macvo/package.xml new file mode 100644 index 00000000..b5019c08 --- /dev/null +++ b/robot/ros_ws/src/autonomy/2_perception/macvo/package.xml @@ -0,0 +1,20 @@ + + + + macvo + 0.0.0 + TODO: Package description + yutian + TODO: License declaration + + sensor_interfaces + + ament_copyright + ament_flake8 + ament_pep257 + python3-pytest + + + ament_python + + diff --git a/robot/ros_ws/src/autonomy/2_perception/macvo/resource/macvo b/robot/ros_ws/src/autonomy/2_perception/macvo/resource/macvo new file mode 100644 index 00000000..e69de29b diff --git a/robot/ros_ws/src/autonomy/2_perception/macvo/setup.cfg b/robot/ros_ws/src/autonomy/2_perception/macvo/setup.cfg new file mode 100644 index 00000000..9c4fab29 --- /dev/null +++ b/robot/ros_ws/src/autonomy/2_perception/macvo/setup.cfg @@ -0,0 +1,4 @@ +[develop] +script_dir=$base/lib/macvo +[install] +install_scripts=$base/lib/macvo diff --git a/robot/ros_ws/src/autonomy/2_perception/macvo/setup.py b/robot/ros_ws/src/autonomy/2_perception/macvo/setup.py new file mode 100644 index 00000000..5ba2f690 --- /dev/null +++ b/robot/ros_ws/src/autonomy/2_perception/macvo/setup.py @@ -0,0 +1,39 @@ +import os +from setuptools import find_packages, setup + +package_name = 'macvo' + +def package_files(directory): + paths = [] + for (path, directories, filenames) in os.walk(directory): + for filename in filenames: + paths.append(os.path.join('..', path, filename)) + return paths + +extra_files = package_files('macvo/src') + +setup( + name=package_name, + version='0.0.0', + packages=[package_name], + data_files=[ + ('share/ament_index/resource_index/packages', + ['resource/' + package_name]), + ('share/' + package_name, ['package.xml']), + ('share/' + package_name, ['launch/macvo.launch.xml']), + ('share/' + package_name + '/config', ['config/interface_config.yaml','config/model_config.yaml']), + ], + package_data={package_name: extra_files}, + install_requires=['setuptools'], + zip_safe=True, + maintainer='yutian', + maintainer_email='markchenyutian@gmail.com', + description='TODO: Package description', + license='TODO: License declaration', + tests_require=['pytest'], + entry_points={ + 'console_scripts': [ + 'macvo = macvo.macvo:main', + ], + }, +) diff --git a/robot/ros_ws/src/autonomy/2_perception/macvo/test/test_copyright.py b/robot/ros_ws/src/autonomy/2_perception/macvo/test/test_copyright.py new file mode 100644 index 00000000..97a39196 --- /dev/null +++ b/robot/ros_ws/src/autonomy/2_perception/macvo/test/test_copyright.py @@ -0,0 +1,25 @@ +# Copyright 2015 Open Source Robotics Foundation, Inc. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +from ament_copyright.main import main +import pytest + + +# Remove the `skip` decorator once the source file(s) have a copyright header +@pytest.mark.skip(reason='No copyright header has been placed in the generated source file.') +@pytest.mark.copyright +@pytest.mark.linter +def test_copyright(): + rc = main(argv=['.', 'test']) + assert rc == 0, 'Found errors' diff --git a/robot/ros_ws/src/autonomy/2_perception/macvo/test/test_flake8.py b/robot/ros_ws/src/autonomy/2_perception/macvo/test/test_flake8.py new file mode 100644 index 00000000..27ee1078 --- /dev/null +++ b/robot/ros_ws/src/autonomy/2_perception/macvo/test/test_flake8.py @@ -0,0 +1,25 @@ +# Copyright 2017 Open Source Robotics Foundation, Inc. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +from ament_flake8.main import main_with_errors +import pytest + + +@pytest.mark.flake8 +@pytest.mark.linter +def test_flake8(): + rc, errors = main_with_errors(argv=[]) + assert rc == 0, \ + 'Found %d code style errors / warnings:\n' % len(errors) + \ + '\n'.join(errors) diff --git a/robot/ros_ws/src/autonomy/2_perception/macvo/test/test_pep257.py b/robot/ros_ws/src/autonomy/2_perception/macvo/test/test_pep257.py new file mode 100644 index 00000000..b234a384 --- /dev/null +++ b/robot/ros_ws/src/autonomy/2_perception/macvo/test/test_pep257.py @@ -0,0 +1,23 @@ +# Copyright 2015 Open Source Robotics Foundation, Inc. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +from ament_pep257.main import main +import pytest + + +@pytest.mark.linter +@pytest.mark.pep257 +def test_pep257(): + rc = main(argv=['.', 'test']) + assert rc == 0, 'Found code style errors / warnings' diff --git a/robot/ros_ws/src/autonomy/2_perception/perception_bringup/launch/perception.launch.xml b/robot/ros_ws/src/autonomy/2_perception/perception_bringup/launch/perception.launch.xml index 0363a73b..e5399138 100644 --- a/robot/ros_ws/src/autonomy/2_perception/perception_bringup/launch/perception.launch.xml +++ b/robot/ros_ws/src/autonomy/2_perception/perception_bringup/launch/perception.launch.xml @@ -2,6 +2,25 @@ + + + + + + + + + + + + + + diff --git a/robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_graph/README.md b/robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_graph/README.md new file mode 100644 index 00000000..fd2784da --- /dev/null +++ b/robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_graph/README.md @@ -0,0 +1,6 @@ +# Disparity Graph + + +Contact: Andrew Jong + +Docs TODO. Help appreciated. \ No newline at end of file diff --git a/robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_graph_cost_map/README.md b/robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_graph_cost_map/README.md new file mode 100644 index 00000000..dd477e3b --- /dev/null +++ b/robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_graph_cost_map/README.md @@ -0,0 +1,6 @@ +# Disparity Graph Cost Map + + +Contact: Andrew Jong + +Docs TODO. Help appreciated. \ No newline at end of file diff --git a/robot/ros_ws/src/autonomy/3_local/b_planners/droan_local_planner/README.md b/robot/ros_ws/src/autonomy/3_local/b_planners/droan_local_planner/README.md new file mode 100644 index 00000000..c047185c --- /dev/null +++ b/robot/ros_ws/src/autonomy/3_local/b_planners/droan_local_planner/README.md @@ -0,0 +1,18 @@ +# DROAN Local Planner + + +This is part of a set of packages that performs local obstacle avoidance from stereo depth. The method is based on the publication ["DROAN - Disparity-space representation for obstacle avoidance."](https://www.ri.cmu.edu/app/uploads/2018/01/root.pdf). Essentially, the local world model makes a C-space expansion around detected obstacles in the disparity image. The local planner then plans a path by scoring the best trajectory from a trajectory library in this expanded space. + +The packages are + + 1. [disparity_expansion](../../a_world_models/disparity_expansion/README.md) (takes in stereo disparity and expands it to a 3D point cloud) + 2. [disparity_graph](../../a_world_models/disparity_graph/README.md) (creates a graph where each node is a drone pose and 3D point cloud observation) + 3. [disparity_graph_cost_map](../../a_world_models/disparity_graph_cost_map/README.md) (creates a cost map from the disparity graph) + 4. droan_local_planner (this package. uses the cost map to plan a path) + + +DROAN local planner takes the global plan, and finds the global plan's closest point to the drone. +DROAN trims the global plan to be from that point to the end of the global plan. + +Consequently, DROAN currently does NOT use a waypoint manager, and is NOT guaranteed to reach every waypoint on the global plan, especially if the global plan loops back on itself. +Ideally in the future we will use a proper waypoint manager. \ No newline at end of file diff --git a/robot/ros_ws/src/autonomy/3_local/b_planners/droan_local_planner/config/droan.yaml b/robot/ros_ws/src/autonomy/3_local/b_planners/droan_local_planner/config/droan.yaml index fcca22c3..a65daa22 100644 --- a/robot/ros_ws/src/autonomy/3_local/b_planners/droan_local_planner/config/droan.yaml +++ b/robot/ros_ws/src/autonomy/3_local/b_planners/droan_local_planner/config/droan.yaml @@ -10,17 +10,17 @@ dt: 0.2 ht: 2.4 ht_long: 3.0 - max_velocity: 20.0 + max_velocity: 1.0 magnitude: 0.5 # DROAN parameters robot_radius: 0.325 # spirit drone blade to blade - safety_cost_weight: 1.0 - forward_progress_forgiveness_weight: 0.5 + safety_cost_weight: 5.0 + forward_progress_forgiveness_weight: 0.1 # map parameters. see disparity_graph_cost_map.cpp cost_map: disparity_graph_cost_map::DisparityGraphCostMap - obstacle_check_radius: 1.0 # this value MUST be strictly greater than the robot radius + obstacle_check_radius: 2.0 # this value MUST be strictly greater than the robot radius obstacle_check_num_points: 5 # disparity graph parameters. see disparity_graph.hpp fixed_frame: "map" @@ -40,4 +40,7 @@ # CUSTOM_WAYPOINT mode parameters custom_waypoint_timeout_factor: 0.3 - custom_waypoint_distance_threshold: 0.5 \ No newline at end of file + custom_waypoint_distance_threshold: 0.5 + + # Disparity Graph parameters + graph_size: 5 \ No newline at end of file diff --git a/robot/ros_ws/src/autonomy/3_local/b_planners/droan_local_planner/include/droan_local_planner/droan_local_planner.hpp b/robot/ros_ws/src/autonomy/3_local/b_planners/droan_local_planner/include/droan_local_planner/droan_local_planner.hpp index c59d6843..dc81ac20 100644 --- a/robot/ros_ws/src/autonomy/3_local/b_planners/droan_local_planner/include/droan_local_planner/droan_local_planner.hpp +++ b/robot/ros_ws/src/autonomy/3_local/b_planners/droan_local_planner/include/droan_local_planner/droan_local_planner.hpp @@ -192,12 +192,12 @@ class DroanLocalPlanner : public rclcpp::Node { double trajectory_distance; bool is_valid = global_plan.get_trajectory_distance_at_closest_point(look_ahead_position, &trajectory_distance); - // trim the global plan to only the next 10 meters + // trim the global plan to only the next 100 meters if (is_valid) { - this->global_plan_trajectory_distance += trajectory_distance; - global_plan = global_plan.trim_trajectory_between_distances( - this->global_plan_trajectory_distance, - this->global_plan_trajectory_distance + 10.0); + trajectory_distance = std::max(trajectory_distance, this->global_plan_trajectory_distance); + global_plan = global_plan.trim_trajectory_between_distances(trajectory_distance, trajectory_distance + std::numeric_limits::infinity()); + RCLCPP_INFO_STREAM(this->get_logger(), "using global plan from distance " << trajectory_distance); + this->global_plan_trajectory_distance = trajectory_distance; } else { RCLCPP_INFO(this->get_logger(), "invalid"); } diff --git a/robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md b/robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md index ad459393..9223a4a9 100644 --- a/robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md +++ b/robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md @@ -1,4 +1,6 @@ -### TakeoffLandingPlanner +# Takeoff Landing Planner -Author: +Author: John Keller + +DOCS TODO. Help appreciated. diff --git a/robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/config/takeoff_landing_planner.yaml b/robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/config/takeoff_landing_planner.yaml index 8b80240e..5b111866 100644 --- a/robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/config/takeoff_landing_planner.yaml +++ b/robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/config/takeoff_landing_planner.yaml @@ -1,7 +1,7 @@ /**: ros__parameters: - takeoff_height: 1.0 - high_takeoff_height: 2.0 + takeoff_height: 2.0 + high_takeoff_height: 10.0 takeoff_landing_velocity: 0.3 takeoff_acceptance_distance: 0.3 takeoff_acceptance_time: 10.0 diff --git a/robot/ros_ws/src/autonomy/3_local/b_planners/trajectory_library/README.md b/robot/ros_ws/src/autonomy/3_local/b_planners/trajectory_library/README.md new file mode 100644 index 00000000..dad89919 --- /dev/null +++ b/robot/ros_ws/src/autonomy/3_local/b_planners/trajectory_library/README.md @@ -0,0 +1,7 @@ +# Trajectory Library + +Contact: John Keller + +Defines some basic trajectory classes and functions for generating and manipulating trajectories. + +Docs TODO. Help appreciated. \ No newline at end of file diff --git a/robot/ros_ws/src/autonomy/3_local/local_bringup/launch/local.launch.xml b/robot/ros_ws/src/autonomy/3_local/local_bringup/launch/local.launch.xml index ed55b26d..2d00b94f 100644 --- a/robot/ros_ws/src/autonomy/3_local/local_bringup/launch/local.launch.xml +++ b/robot/ros_ws/src/autonomy/3_local/local_bringup/launch/local.launch.xml @@ -57,13 +57,13 @@ output="screen"> - + - + diff --git a/robot/ros_ws/src/autonomy/4_global/b_planners/random_walk/README.md b/robot/ros_ws/src/autonomy/4_global/b_planners/random_walk/README.md index d286a46c..5fe2e387 100644 --- a/robot/ros_ws/src/autonomy/4_global/b_planners/random_walk/README.md +++ b/robot/ros_ws/src/autonomy/4_global/b_planners/random_walk/README.md @@ -2,6 +2,9 @@ The Random Walk Planner serves as a baseline global planner for stress testing system autonomy. Unlike more informed and intelligent planners, the Random Walk Planner generates a series of random trajectories to evaluate system robustness. Using the map published by VDB, the planner will generate and publish multiple linked straight-line trajectories, checking for collisions along these paths. +![random walk image](./random_walk.png) +The blue line is the global plan generated by the random walk. The yellow line shows the past trajectory followed by the local planner when pursuing the previous random global plans. + ## Functionality Upon activation by the behavior tree, the Random Walk Planner will: @@ -21,7 +24,7 @@ This loop continues, allowing the system to explore various trajectories and str | `max_z_change_m` | Maximum allowed change in height (z-axis) between the start and goal points.| | `collision_padding_m` | Extra padding (in meters) added around a voxel's dimensions when checking for collisions.| | `path_end_threshold_m` | Distance threshold (in meters) for considering the current path completed and generating a new one.| -| `max_z_angle_change_rad` | Maximum allowed change in angle (in radians) between consecutive straight-line segments to ensure a relatively consistent direction.| +| `max_yaw_change_degrees` | Maximum allowed change in angle (in radians) between consecutive straight-line segments to ensure a relatively consistent direction.| | `robot_frame_id` | The frame name for the robot's base frame to look up the transform from the robot position to the world.| ## Services diff --git a/robot/ros_ws/src/autonomy/4_global/b_planners/random_walk/config/random_walk_config.yaml b/robot/ros_ws/src/autonomy/4_global/b_planners/random_walk/config/random_walk_config.yaml index b22a491b..118d6751 100644 --- a/robot/ros_ws/src/autonomy/4_global/b_planners/random_walk/config/random_walk_config.yaml +++ b/robot/ros_ws/src/autonomy/4_global/b_planners/random_walk/config/random_walk_config.yaml @@ -12,10 +12,13 @@ num_paths_to_generate: 5 # how many random walk paths to string together # Random Walk Planner Parameters - max_start_to_goal_dist_m: 5.0 # how max distance the goal can be from the current robot position + max_start_to_goal_dist_m: 10.0 # how max distance the goal can be from the current robot position checking_point_cnt: 100 # how many points to collision check between the start and goal points - max_z_change_m: 0.1 # max height that the goal can deviate from the current height - collision_padding_m: 0.1 # how much space should the path have to any obstacles - path_end_threshold_m: 0.1 # how close to the goal will the path be considered complete - max_z_angle_change_rad: 1.0 # how much the goal can deviate from the current orientation + max_z_change_m: 2.0 # max height that the goal can deviate from the current height + collision_padding_m: 1.0 # how much space should the path have to any obstacles + path_end_threshold_m: 3.0 # how close to the goal will the path be considered complete + max_yaw_change_degrees: 180.0 # how much the goal can deviate from the current orientation + # Stall detection parameters + position_change_threshold: 0.1 # Minimum distance (meters) to consider as movement + stall_timeout_seconds: 3.0 # Time without movement before clearing plan \ No newline at end of file diff --git a/robot/ros_ws/src/autonomy/4_global/b_planners/random_walk/include/random_walk_logic.hpp b/robot/ros_ws/src/autonomy/4_global/b_planners/random_walk/include/random_walk_logic.hpp index 00520bef..d87efa07 100644 --- a/robot/ros_ws/src/autonomy/4_global/b_planners/random_walk/include/random_walk_logic.hpp +++ b/robot/ros_ws/src/autonomy/4_global/b_planners/random_walk/include/random_walk_logic.hpp @@ -19,7 +19,7 @@ struct init_params { float max_z_change_m; float collision_padding_m; float path_end_threshold_m; - float max_z_angle_change_rad; + float max_yaw_change_degrees; std::tuple voxel_size_m; }; @@ -43,7 +43,7 @@ class RandomWalkPlanner { int checking_point_cnt; float max_z_change_m_; float collision_padding_m; - float max_z_angle_change_rad; + float max_yaw_change_degrees; // Variables std::tuple voxel_size_m; diff --git a/robot/ros_ws/src/autonomy/4_global/b_planners/random_walk/include/random_walk_node.hpp b/robot/ros_ws/src/autonomy/4_global/b_planners/random_walk/include/random_walk_node.hpp index 69c98377..21e70d54 100644 --- a/robot/ros_ws/src/autonomy/4_global/b_planners/random_walk/include/random_walk_node.hpp +++ b/robot/ros_ws/src/autonomy/4_global/b_planners/random_walk/include/random_walk_node.hpp @@ -52,6 +52,10 @@ class RandomWalkNode : public rclcpp::Node { geometry_msgs::msg::Transform current_location; // x, y, z, yaw geometry_msgs::msg::Transform current_goal_location; // x, y, z, yaw + geometry_msgs::msg::Transform last_location; // Last recorded position + rclcpp::Time last_position_change; // Time of last position change + double position_change_threshold = 0.1; // Minimum distance (meters) to consider as movement + double stall_timeout_seconds = 5.0; // Time without movement before clearing plan // Callbacks void mapCallback(const visualization_msgs::msg::Marker::SharedPtr msg); diff --git a/robot/ros_ws/src/autonomy/4_global/b_planners/random_walk/random_walk.png b/robot/ros_ws/src/autonomy/4_global/b_planners/random_walk/random_walk.png new file mode 100644 index 00000000..1efba976 Binary files /dev/null and b/robot/ros_ws/src/autonomy/4_global/b_planners/random_walk/random_walk.png differ diff --git a/robot/ros_ws/src/autonomy/4_global/b_planners/random_walk/src/random_walk_logic.cpp b/robot/ros_ws/src/autonomy/4_global/b_planners/random_walk/src/random_walk_logic.cpp index c7299f22..685e3f1e 100644 --- a/robot/ros_ws/src/autonomy/4_global/b_planners/random_walk/src/random_walk_logic.cpp +++ b/robot/ros_ws/src/autonomy/4_global/b_planners/random_walk/src/random_walk_logic.cpp @@ -11,7 +11,7 @@ RandomWalkPlanner::RandomWalkPlanner(init_params params) this->voxel_size_m = params.voxel_size_m; this->collision_padding_m = params.collision_padding_m; this->path_end_threshold_m = params.path_end_threshold_m; - this->max_z_angle_change_rad = params.max_z_angle_change_rad; + this->max_yaw_change_degrees = params.max_yaw_change_degrees; } std::optional RandomWalkPlanner::generate_straight_rand_path( @@ -110,6 +110,14 @@ bool RandomWalkPlanner::check_if_collided_single_voxel( bool RandomWalkPlanner::check_if_collided(const std::tuple& point) { + // make sure the point is within the bounds -30 to 30 + if (std::get<0>(point) > 30 || std::get<0>(point) < -30 || std::get<1>(point) > 30 || + std::get<1>(point) < -30 || std::get<2>(point) > 30 || std::get<2>(point) < -30) + { + return true; + } + + std::lock_guard lock(this->mutex); for (const std::tuple& voxel : this->voxel_points) { @@ -144,6 +152,7 @@ std::tuple RandomWalkPlanner::generate_goal_point( float rand_x = std::get<0>(start_point) + delta_x; float rand_y = std::get<1>(start_point) + delta_y; float rand_z = std::get<2>(start_point) + delta_z; + rand_z = std::max(0.5f, rand_z); // ensure don't go below the ground std::tuple rand_point(rand_x, rand_y, rand_z); std::tuple start_point_wo_yaw( std::get<0>(start_point), std::get<1>(start_point), std::get<2>(start_point)); @@ -152,7 +161,7 @@ std::tuple RandomWalkPlanner::generate_goal_point( std::get<0>(rand_point) - std::get<0>(start_point_wo_yaw)); float angle_diff = std::abs(std::get<3>(start_point) - new_angle); // if the z value of the point is low enough - if (angle_diff < this->max_z_angle_change_rad) + if (angle_diff <= this->max_yaw_change_degrees * 3.14159265359 / 180) { // if the point is close enough to the start point if (dist < this->max_start_to_goal_dist_m_) diff --git a/robot/ros_ws/src/autonomy/4_global/b_planners/random_walk/src/random_walk_node.cpp b/robot/ros_ws/src/autonomy/4_global/b_planners/random_walk/src/random_walk_node.cpp index 3acb4e59..df6bbd5d 100644 --- a/robot/ros_ws/src/autonomy/4_global/b_planners/random_walk/src/random_walk_node.cpp +++ b/robot/ros_ws/src/autonomy/4_global/b_planners/random_walk/src/random_walk_node.cpp @@ -1,4 +1,3 @@ - #include "../include/random_walk_node.hpp" #include "../include/random_walk_logic.hpp" @@ -76,9 +75,20 @@ std::optional RandomWalkNode::readParameters() { RCLCPP_ERROR(this->get_logger(), "Cannot read parameter: path_end_threshold_m"); return std::optional{}; } - this->declare_parameter("max_z_angle_change_rad"); - if (!this->get_parameter("max_z_angle_change_rad", params.max_z_angle_change_rad)) { - RCLCPP_ERROR(this->get_logger(), "Cannot read parameter: max_z_angle_change_rad"); + this->declare_parameter("max_yaw_change_degrees"); + if (!this->get_parameter("max_yaw_change_degrees", params.max_yaw_change_degrees)) { + RCLCPP_ERROR(this->get_logger(), "Cannot read parameter: max_yaw_change_degrees"); + return std::optional{}; + } + this->declare_parameter("position_change_threshold"); + if (!this->get_parameter("position_change_threshold", this->position_change_threshold)) { + + RCLCPP_ERROR(this->get_logger(), "Cannot read parameter: position_change_threshold"); + return std::optional{}; + } + this->declare_parameter("stall_timeout_seconds"); + if (!this->get_parameter("stall_timeout_seconds", this->stall_timeout_seconds)) { + RCLCPP_ERROR(this->get_logger(), "Cannot read parameter: stall_timeout_seconds"); return std::optional{}; } return params; @@ -257,6 +267,7 @@ void RandomWalkNode::publish_plan() { this->pub_global_plan->publish(full_path); RCLCPP_INFO(this->get_logger(), "Published full path"); } + void RandomWalkNode::timerCallback() { // get current TF to world try { @@ -266,6 +277,8 @@ void RandomWalkNode::timerCallback() { this->current_location = transform_stamped.transform; if (!this->received_first_robot_tf) { this->received_first_robot_tf = true; + this->last_location = this->current_location; + this->last_position_change = this->now(); RCLCPP_INFO(this->get_logger(), "Received first robot_tf"); } } catch (tf2::TransformException & ex) { @@ -279,10 +292,12 @@ void RandomWalkNode::timerCallback() { } this->publish_plan(); this->is_path_executing = true; + this->last_position_change = this->now(); // Reset stall timer when starting new plan } else { RCLCPP_INFO_ONCE(this->get_logger(), "Waiting for map and robot tf to be received..."); } } else if (this->enable_random_walk && this->is_path_executing) { + // check if the robot has reached the goal point std::tuple current_point = std::make_tuple( this->current_location.translation.x, this->current_location.translation.y, this->current_location.translation.z); @@ -294,6 +309,27 @@ void RandomWalkNode::timerCallback() { this->is_path_executing = false; this->generated_paths.clear(); RCLCPP_INFO(this->get_logger(), "Reached goal point"); + } else { + // Check if position has changed significantly + std::tuple last_point = std::make_tuple( + this->last_location.translation.x, + this->last_location.translation.y, + this->last_location.translation.z); + + if (get_point_distance(current_point, last_point) > this->position_change_threshold) { + this->last_location = this->current_location; + this->last_position_change = this->now(); + } else { + // Check if we've been stationary for too long + rclcpp::Duration stall_duration = this->now() - this->last_position_change; + if (stall_duration.seconds() > this->stall_timeout_seconds) { + RCLCPP_INFO(this->get_logger(), "Robot stationary for %f seconds, clearing plan", + stall_duration.seconds()); + this->is_path_executing = false; + this->generated_paths.clear(); + this->last_position_change = this->now(); // Reset timer to avoid spam + } + } } } } diff --git a/robot/ros_ws/src/autonomy/4_global/global_bringup/config/vdb_params.yaml b/robot/ros_ws/src/autonomy/4_global/global_bringup/config/vdb_params.yaml index dc9cfe09..e8d4b868 100644 --- a/robot/ros_ws/src/autonomy/4_global/global_bringup/config/vdb_params.yaml +++ b/robot/ros_ws/src/autonomy/4_global/global_bringup/config/vdb_params.yaml @@ -4,7 +4,7 @@ map_frame: map robot_frame: base_link max_range: 10.0 - resolution: 0.07 + resolution: 0.5 prob_hit: 0.99 prob_miss: 0.1 thres_min: 0.49 diff --git a/robot/ros_ws/src/robot_bringup/rviz/robot.rviz b/robot/ros_ws/src/robot_bringup/rviz/robot.rviz index 9c3b161a..6482cd95 100644 --- a/robot/ros_ws/src/robot_bringup/rviz/robot.rviz +++ b/robot/ros_ws/src/robot_bringup/rviz/robot.rviz @@ -5,13 +5,15 @@ Panels: Property Tree Widget: Expanded: - /TF1/Frames1 - - /Sensors1 + - /Perception1 - /Local1 - /Local1/DROAN1 + - /Local1/DROAN1/Trimmed Global Plan for DROAN1 + - /Local1/DROAN1/Trimmed Global Plan for DROAN1/Topic1 - /Local1/Trajectory Controller1 - /Global1 Splitter Ratio: 0.590062141418457 - Tree Height: 1085 + Tree Height: 701 - Class: rviz_common/Selection Name: Selection - Class: rviz_common/Tool Properties @@ -232,6 +234,44 @@ Visualization Manager: Value: false Enabled: true Name: Sensors + - Class: rviz_common/Group + Displays: + - Class: rviz_default_plugins/Image + Enabled: true + Max Value: 1 + Median window: 5 + Min Value: 0 + Name: Visual Odometry Features + Normalize Range: true + Topic: + Depth: 5 + Durability Policy: Volatile + History Policy: Keep Last + Reliability Policy: Reliable + Value: /robot_1/perception/visual_odometry_img + Value: true + - Alpha: 1 + Axes Length: 1 + Axes Radius: 0.10000000149011612 + Class: rviz_default_plugins/Pose + Color: 255; 25; 0 + Enabled: true + Head Length: 0.30000001192092896 + Head Radius: 0.10000000149011612 + Name: Visual Odometry + Shaft Length: 1 + Shaft Radius: 0.05000000074505806 + Shape: Arrow + Topic: + Depth: 5 + Durability Policy: Volatile + Filter size: 10 + History Policy: Keep Last + Reliability Policy: Reliable + Value: /robot_1/perception/visual_odometry_pose + Value: true + Enabled: true + Name: Perception - Class: rviz_common/Group Displays: - Class: rviz_common/Group @@ -262,17 +302,17 @@ Visualization Manager: Value: /robot_1/droan/disparity_map_debug Value: false - Class: rviz_default_plugins/MarkerArray - Enabled: true + Enabled: false Name: Disparity Graph Poses Namespaces: - pose: true + {} Topic: Depth: 5 Durability Policy: Volatile History Policy: Keep Last Reliability Policy: Reliable Value: /robot_1/droan/disparity_graph - Value: true + Value: false - Class: rviz_default_plugins/MarkerArray Enabled: true Name: Trimmed Global Plan for DROAN @@ -466,25 +506,25 @@ Visualization Manager: Views: Current: Class: rviz_default_plugins/Orbit - Distance: 21.319120407104492 + Distance: 17.393077850341797 Enable Stereo Rendering: Stereo Eye Separation: 0.05999999865889549 Stereo Focal Distance: 1 Swap Stereo Eyes: false Value: false Focal Point: - X: 1.0440632104873657 - Y: 1.6269922256469727 - Z: 0.25401341915130615 + X: -2.118461847305298 + Y: 3.126241683959961 + Z: -0.541254997253418 Focal Shape Fixed Size: false Focal Shape Size: 0.05000000074505806 Invert Z Axis: false Name: Current View Near Clip Distance: 0.009999999776482582 - Pitch: 0.390395849943161 + Pitch: 0.3603954613208771 Target Frame: Value: Orbit (rviz) - Yaw: 0.8517506122589111 + Yaw: 0.3381178677082062 Saved: ~ Window Geometry: Displays: @@ -496,7 +536,7 @@ Window Geometry: Height: 1376 Hide Left Dock: false Hide Right Dock: false - QMainWindow State: 000000ff00000000fd0000000400000000000001e5000004c6fc0200000009fb0000001200530065006c0065006300740069006f006e00000001e10000009b0000005c00fffffffb0000001e0054006f006f006c002000500072006f007000650072007400690065007302000001ed000001df00000185000000a3fb000000120056006900650077007300200054006f006f02000001df000002110000018500000122fb000000200054006f006f006c002000500072006f0070006500720074006900650073003203000002880000011d000002210000017afb000000100044006900730070006c006100790073010000003b000004c6000000c700fffffffb0000002000730065006c0065006300740069006f006e00200062007500660066006500720200000138000000aa0000023a00000294fb00000014005700690064006500530074006500720065006f02000000e6000000d2000003ee0000030bfb0000000c004b0069006e0065006300740200000186000001060000030c00000261fb0000000a0049006d00610067006500000002eb000000c9000000000000000000000001000001f6000004c6fc0200000007fb00000016004c006500660074002000430061006d006500720061010000003b000001880000000000000000fb00000014004c006500660074002000440065007000740068010000003b0000016a0000000000000000fb0000001e0054006f006f006c002000500072006f00700065007200740069006500730100000041000000780000000000000000fb0000001c00460072006f006e00740020004c0065006600740020005200470042010000003b0000020e0000002800fffffffb0000002000460072006f006e00740020004c006500660074002000440065007000740068010000024f000002b20000002800fffffffb0000000a0056006900650077007300000000fd000001a8000000a000fffffffb0000001200530065006c0065006300740069006f006e010000025a000000b200000000000000000000000200000490000000a9fc0100000001fb0000000a00560069006500770073030000004e00000080000002e10000019700000003000009ba0000003efc0100000002fb0000000800540069006d00650100000000000009ba0000025300fffffffb0000000800540069006d00650100000000000004500000000000000000000005d3000004c600000004000000040000000800000008fc0000000100000002000000010000000a0054006f006f006c00730100000000ffffffff0000000000000000 + QMainWindow State: 000000ff00000000fd0000000400000000000001e5000004c6fc020000000afb0000001200530065006c0065006300740069006f006e00000001e10000009b0000005c00fffffffb0000001e0054006f006f006c002000500072006f007000650072007400690065007302000001ed000001df00000185000000a3fb000000120056006900650077007300200054006f006f02000001df000002110000018500000122fb000000200054006f006f006c002000500072006f0070006500720074006900650073003203000002880000011d000002210000017afb000000100044006900730070006c006100790073010000003b00000346000000c700fffffffb0000002000730065006c0065006300740069006f006e00200062007500660066006500720200000138000000aa0000023a00000294fb00000014005700690064006500530074006500720065006f02000000e6000000d2000003ee0000030bfb0000000c004b0069006e0065006300740200000186000001060000030c00000261fb0000003000560069007300750061006c0020004f0064006f006d006500740072007900200046006500610074007500720065007301000003870000017a0000002800fffffffb0000000a0049006d00610067006501000003ad0000016f000000000000000000000001000001f6000004c6fc0200000007fb00000016004c006500660074002000430061006d006500720061010000003b000001880000000000000000fb00000014004c006500660074002000440065007000740068010000003b0000016a0000000000000000fb0000001e0054006f006f006c002000500072006f00700065007200740069006500730100000041000000780000000000000000fb0000001c00460072006f006e00740020004c0065006600740020005200470042010000003b0000020e0000002800fffffffb0000002000460072006f006e00740020004c006500660074002000440065007000740068010000024f000002b20000002800fffffffb0000000a0056006900650077007300000000fd000001a8000000a000fffffffb0000001200530065006c0065006300740069006f006e010000025a000000b200000000000000000000000200000490000000a9fc0100000001fb0000000a00560069006500770073030000004e00000080000002e10000019700000003000009ba0000003efc0100000002fb0000000800540069006d00650100000000000009ba0000025300fffffffb0000000800540069006d00650100000000000004500000000000000000000005d3000004c600000004000000040000000800000008fc0000000100000002000000010000000a0054006f006f006c00730100000000ffffffff0000000000000000 Selection: collapsed: false Time: @@ -505,6 +545,8 @@ Window Geometry: collapsed: false Views: collapsed: false + Visual Odometry Features: + collapsed: false Width: 2490 X: 1990 Y: 27 diff --git a/simulation/isaac-sim/docker/Dockerfile.isaac-ros b/simulation/isaac-sim/docker/Dockerfile.isaac-ros index 1c21accd..bc0f2aa0 100644 --- a/simulation/isaac-sim/docker/Dockerfile.isaac-ros +++ b/simulation/isaac-sim/docker/Dockerfile.isaac-ros @@ -1,79 +1,111 @@ +ARG ISAAC_VERSION="4.2.0" # expects context to be the root of the repository, i.e. AirStack/. this is so we can access AirStack/ros_ws/ -FROM nvcr.io/nvidia/isaac-sim:4.2.0 +FROM nvcr.io/nvidia/isaac-sim:${ISAAC_VERSION} +ARG ISAAC_VERSION WORKDIR /isaac-sim -# isaac's ros2 launch run_isaacsim.launch.py hardcodes to search in this path, so we have to put the executables here -RUN mkdir -p /root/.local/share/ov/pkg/ -RUN ln -s /isaac-sim /root/.local/share/ov/pkg/isaac-sim-4.2.0 # allows us to run isaac-sim as root ENV OMNI_KIT_ALLOW_ROOT=1 -# setup timezone -RUN echo 'Etc/UTC' > /etc/timezone && \ - ln -s /usr/share/zoneinfo/Etc/UTC /etc/localtime && \ - apt-get update && \ - apt-get install -q -y --no-install-recommends tzdata && \ - rm -rf /var/lib/apt/lists/* +# from https://github.com/athackst/dockerfiles/blob/main/ros2/humble.Dockerfile +ENV DEBIAN_FRONTEND=noninteractive + +# Install language +RUN apt-get update && apt-get install -y \ + locales \ + && locale-gen en_US.UTF-8 \ + && update-locale LC_ALL=en_US.UTF-8 LANG=en_US.UTF-8 \ + && rm -rf /var/lib/apt/lists/* +ENV LANG=en_US.UTF-8 + +# Install timezone +RUN ln -fs /usr/share/zoneinfo/UTC /etc/localtime \ + && export DEBIAN_FRONTEND=noninteractive \ + && apt-get update \ + && apt-get install -y tzdata \ + && dpkg-reconfigure --frontend noninteractive tzdata \ + && rm -rf /var/lib/apt/lists/* + +RUN apt-get update && apt-get -y upgrade \ + && rm -rf /var/lib/apt/lists/* -# install packages -RUN apt-get update && apt-get install -q -y --no-install-recommends \ - dirmngr \ +# Install common programs +RUN apt-get update && apt-get install -y --no-install-recommends \ + curl \ gnupg2 \ - unzip \ - tmux \ + lsb-release \ + sudo \ + software-properties-common \ + wget \ && rm -rf /var/lib/apt/lists/* -# setup keys -RUN set -eux; \ - key='C1CF6E31E6BADE8868B172B4F42ED6FBAB17C654'; \ - export GNUPGHOME="$(mktemp -d)"; \ - gpg --batch --keyserver keyserver.ubuntu.com --recv-keys "$key"; \ - mkdir -p /usr/share/keyrings; \ - gpg --batch --export "$key" > /usr/share/keyrings/ros2-latest-archive-keyring.gpg; \ - gpgconf --kill all; \ - rm -rf "$GNUPGHOME" - -# setup sources.list -RUN echo "deb [ signed-by=/usr/share/keyrings/ros2-latest-archive-keyring.gpg ] http://packages.ros.org/ros2/ubuntu jammy main" > /etc/apt/sources.list.d/ros2-latest.list - -# setup environment -ENV LANG=C.UTF-8 -ENV LC_ALL=C.UTF-8 -ENV ROS_DISTRO=humble - -# Install ROS2 packages -RUN apt update && apt install -y --no-install-recommends curl emacs vim nano tmux gdb xterm \ - cmake \ - git \ +# Install ROS2 +RUN sudo add-apt-repository universe \ + && curl -sSL https://raw.githubusercontent.com/ros/rosdistro/master/ros.key -o /usr/share/keyrings/ros-archive-keyring.gpg \ + && echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/ros-archive-keyring.gpg] http://packages.ros.org/ros2/ubuntu $(. /etc/os-release && echo $UBUNTU_CODENAME) main" | sudo tee /etc/apt/sources.list.d/ros2.list > /dev/null \ + && apt-get update && apt upgrade -y && apt-get install -y --no-install-recommends \ ros-humble-desktop \ - ros-dev-tools \ + python3-argcomplete \ + && rm -rf /var/lib/apt/lists/* + +ENV ROS_DISTRO=humble +ENV AMENT_PREFIX_PATH=/opt/ros/humble +ENV COLCON_PREFIX_PATH=/opt/ros/humble +ENV LD_LIBRARY_PATH=/opt/ros/humble/lib/x86_64-linux-gnu:/opt/ros/humble/lib +ENV PATH=/opt/ros/humble/bin:$PATH +ENV PYTHONPATH=/opt/ros/humble/local/lib/python3.10/dist-packages:/opt/ros/humble/lib/python3.10/site-packages +ENV ROS_PYTHON_VERSION=3 +ENV ROS_VERSION=2 +ENV ROS_AUTOMATIC_DISCOVERY_RANGE=SUBNET +ENV DEBIAN_FRONTEND= + +# ======================== +# Install dev tools +RUN apt update && apt install -y \ + vim nano wget curl tree \ + cmake build-essential \ + less htop jq \ python3-pip \ python3-rosdep \ + tmux \ + gdb + +# Install any additional ROS2 packages +RUN apt update -y && apt install -y \ + ros-dev-tools \ + ros-humble-mavros \ ros-humble-tf2* \ - ros-humble-mavros \ - ros-humble-ackermann-msgs + ros-humble-topic-tools \ + ros-humble-grid-map \ + ros-humble-domain-bridge \ + ros-humble-ackermann-msgs \ + libcgal-dev \ + python3-colcon-common-extensions RUN /opt/ros/humble/lib/mavros/install_geographiclib_datasets.sh + RUN /isaac-sim/python.sh -m pip install git+https://github.com/dronekit/dronekit-python#egg=dronekit RUN pip install PyYAML mavproxy tmuxp scipy +ARG isaac_dir_name="IsaacSim-ros_workspaces-IsaacSim-${ISAAC_VERSION}" # Install Isaac Sim ROS2 workspace so that we can run the isaacsim ROS package RUN cd /tmp/ && \ - curl -L -O https://github.com/isaac-sim/IsaacSim-ros_workspaces/archive/main.zip && \ - unzip main.zip && \ - mv IsaacSim-ros_workspaces-main/humble_ws /humble_ws && \ + curl -L -O https://github.com/isaac-sim/IsaacSim-ros_workspaces/archive/refs/tags/IsaacSim-${ISAAC_VERSION}.zip && \ + ls -l && \ + unzip IsaacSim-${ISAAC_VERSION}.zip && \ + mv ${isaac_dir_name}/humble_ws /humble_ws && \ cd /humble_ws && \ . /opt/ros/humble/setup.sh && \ colcon build --symlink-install && \ - rm -rf /tmp/IsaacSim-ros_workspaces-main + rm -rf /tmp/IsaacSim-${ISAAC_VERSION}.zip /tmp/${isaac_dir_name} # copy over the AscentAeroSystemsSITLPackage COPY sitl_integration/AscentAeroSystemsSITLPackage /AscentAeroSystemsSITLPackage -# the user.config.json file specifies to auto load the SITL extensions -COPY docker/user.config.json /root/.local/share/ov/data/Kit/Isaac-Sim/4.1/user.config.json +# isaac's ros2 launch run_isaacsim.launch.py hardcodes to search in this path, so we have to put the executables here +RUN mkdir -p /root/.local/share/ov/pkg/ && ln -s /isaac-sim /root/.local/share/ov/pkg/isaac-sim-${ISAAC_VERSION} COPY docker/fastdds.xml /isaac-sim/fastdds.xml diff --git a/simulation/isaac-sim/docker/docker-compose.yaml b/simulation/isaac-sim/docker/docker-compose.yaml index 10fee695..a238dd6e 100644 --- a/simulation/isaac-sim/docker/docker-compose.yaml +++ b/simulation/isaac-sim/docker/docker-compose.yaml @@ -52,6 +52,7 @@ services: - ~/docker/isaac-sim/logs:/root/.nvidia-omniverse/logs:rw - ~/docker/isaac-sim/data:/root/.local/share/ov/data:rw - ~/docker/isaac-sim/documents:/root/Documents:rw + # IMPORTANT: set the version number without the trailing .0 - ./user.config.json:/root/.local/share/ov/data/Kit/Isaac-Sim/4.2/user.config.json:rw - ./ui.py:/isaac-sim/kit/exts/omni.kit.widget.nucleus_connector/omni/kit/widget/nucleus_connector/ui.py:rw # developer stuff